diff -Nru ukui-clipboard-1.0.0.0/CMakeLists.txt ukui-clipboard-2.0.0.0/CMakeLists.txt
--- ukui-clipboard-1.0.0.0/CMakeLists.txt	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/CMakeLists.txt	2024-12-19 16:45:36.000000000 +0800
@@ -32,11 +32,42 @@
 find_package(KF5I18n REQUIRED)
 find_package(KF5WindowSystem REQUIRED)
 find_package(KF5CoreAddons REQUIRED)
-find_package(Qt5 COMPONENTS Core Quick X11Extras REQUIRED)
+find_package(Qt5 COMPONENTS Core Quick X11Extras Concurrent REQUIRED)
 find_package(X11 REQUIRED)
+find_package(PkgConfig REQUIRED)
+find_package(ukui-quick COMPONENTS platform REQUIRED)
+
+#translation
+find_package(QT NAMES Qt6 Qt5 COMPONENTS LinguistTools REQUIRED)
+find_package(Qt${QT_VERSION_MAJOR} COMPONENTS LinguistTools REQUIRED)
+
+pkg_check_modules(GSETTINGQT REQUIRED gsettings-qt)
+
+set(TS_FILES)
+set(QM_FILES)
+
+file(GLOB QML_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*")
+
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_zh_CN.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_bo_CN.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_zh_Hant.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_ug.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_mn.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_ky.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_kk.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_fr.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_es.ts)
+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translations/ukui-clipboard_de.ts)
+
+set_source_files_properties(${TS_FILES}
+    PROPERTIES OUTPUT_LOCATION ${CMAKE_CURRENT_SOURCE_DIR})
+
+qt5_create_translation(QM_FILES ${TS_FILES} ${QML_FILES})
+add_custom_target(lupdate_task DEPENDS ${TS_FILES})
+add_custom_target(lrelease_task DEPENDS ${QM_FILES})
 
 set(EXTERNAL_LIBS "")
-set(PC_PKGS kysdk-waylandhelper gsettings-qt x11 Qt5Xdg)
+set(PC_PKGS kysdk-waylandhelper kysdk-qtwidgets)
 foreach(external_lib IN ITEMS ${PC_PKGS})
     pkg_check_modules(${external_lib} REQUIRED IMPORTED_TARGET ${external_lib})
     if(${${external_lib}_FOUND})
@@ -45,14 +76,14 @@
         list(APPEND EXTERNAL_LIBS PkgConfig::${external_lib})
     endif()
 endforeach()
-add_subdirectory(qtsingleapplication)
-include_directories(qtsingleapplication/src)
-include_directories(/usr/include/)
+add_subdirectory(third-party/qtsingleapplication)
+include_directories(third-party/qtsingleapplication/src)
 
 if(ANDROID)
     add_library(ukui-clipboard SHARED
       main.cpp
       qml.qrc
+      ${QM_FILES}
     )
 else()
     add_executable(ukui-clipboard
@@ -63,8 +94,10 @@
       clipboardbackend.h
       utils.cpp
       utils.h
-      titlelesswindow.h
+      windowsettings.cpp
+      windowsettings.h
       qml.qrc
+      ${QM_FILES}
     )
 endif()
 
@@ -74,8 +107,8 @@
     Qt5::Core
     Qt5::Quick
     Qt5::X11Extras
-    Qt5::Widgets
     Qt5::QuickWidgets
+    Qt5::Concurrent
     KF5::ConfigCore
     KF5::WindowSystem
     KF5::CoreAddons
@@ -85,7 +118,12 @@
     kylin-ai-base
     ${X11_LIBRARIES}
     ${EXTERNAL_LIBS}
+    ukui-quick::platform
+    ${GSETTINGQT_LIBRARIES}
+    -lukui-log4qt
 )
 
 install(TARGETS ukui-clipboard ${INSTALL_TARGETS_DEFAULT_ARGS})
 install(FILES ukui-clipboard.desktop DESTINATION /etc/xdg/autostart/)
+
+add_subdirectory(taskTray)
diff -Nru ukui-clipboard-1.0.0.0/ClipboardWindow.qml ukui-clipboard-2.0.0.0/ClipboardWindow.qml
--- ukui-clipboard-1.0.0.0/ClipboardWindow.qml	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/ClipboardWindow.qml	2024-12-19 16:45:36.000000000 +0800
@@ -4,43 +4,98 @@
 import QtQuick.Controls 2.15
 import QtQuick.Layouts 1.15
 import org.ukui.quick.items 1.0 as UkuiItems
-import TitleLessWindow 1.0 as MyWd
+import org.ukui.quick.platform 1.0 as Platform
 import ContentMenu 1.0
 
-MyWd.DeactiveWindow {
+ApplicationWindow {
     id: clipboardWindow
     visible: false
-    width: 568
-    height: 412
+    title: "Preview Window"
+
+    property int paddings: 4
+    property int shadowWidth: 8
+    property int windowWidth: 568
+    property int windowHeight: 412
+    property int maxContentWidth: 540
+    property int maxContentHeight: 360
+    property int windowRadius: 18
+    property var themeColor: Platform.Theme.themeColor
+    property var highlightColor: Platform.Theme.color(Platform.Theme.Highlight, Platform.Theme.Active, 1)
+
+    width: windowWidth
+    height: windowHeight
+    maximumWidth: width
+    maximumHeight: height
+    minimumWidth: width
+    minimumHeight: height
     // 设置窗口背景颜色为透明,以便于显示圆角效果
     color: "transparent"
-    Connections {
-        target: clipboardWindow
-        function onWindowDeactivated() {
-            console.log("clipboardWindow deactivated!")
-            // 在这里处理窗口失活逻辑
-            clipboardWindow.visible = false
-        }
-    }
     onVisibleChanged: {
         if (visible) {
             var pos = backend.getGlobalMousePosition()
-            clipboardWindow.x = pos.x - clipboardWindow.width/2
-            clipboardWindow.y = pos.y - clipboardWindow.height/2
+            clipboardWindow.x = (Screen.width - clipboardWindow.width) / 2
+            clipboardWindow.y = (Screen.height - clipboardWindow.height) / 2
+            // 删除下拉菜单里多余的选项并切换到指定界面
+            buttonMenu.removeItem();
+            var currentType = backend.displayingType
+            stack.switchToSpecifiedPage(currentType)
+        }
+    }
+
+    onThemeColorChanged: {
+        highlightColor = Platform.Theme.color(Platform.Theme.Highlight, Platform.Theme.Active, 1)
+    }
+
+    Connections {
+        target: backend
+        function onClipboardWindowVisibleChanged(visible) {
+            clipboardWindow.visible = visible
+        }
+        function onIconThemeChanged() {
+            menuBack.restoreIconName = backend.getIcon(backend.displayedIconName)
+        }
+        function onDisplayedIconNameChanged() {
+            menuBack.restoreIconName = backend.getIcon(backend.displayedIconName)
         }
     }
 
+    // 鼠标拖动
+    MouseArea {
+        anchors.fill: parent
+        cursorShape: Qt.SizeAllCursor
+        property int mouseX: 0
+        property int mouseY: 0
+        onPressed: {
+            mouseX = mouse.x
+            mouseY = mouse.y
+        }
+        onPositionChanged: {
+            if (mouse.buttons === Qt.LeftButton) {
+                clipboardWindow.x += mouse.x - mouseX
+                clipboardWindow.y += mouse.y - mouseY
+            }
+        }
+    }
 
     Rectangle {
         id: menuBack
+        width: windowWidth
+        height: windowHeight
         anchors.centerIn: parent
-        width: clipboardWindow.width
-        height: clipboardWindow.height
-        color: Qt.rgba(255, 255, 255, 1)
+        color: Qt.rgba(255, 255, 255, 0.95)
+        radius: windowRadius
         clip : true
 
-        property int nowCurrentType: backend.displayedType
-        property string restoreIconName: nowCurrentType === ContentType.Image ? "image-x-generic-symbolic" : "ukui-idtext-symbolic"
+        property int lastDisplayedType: -1
+        property var restoreIconName: backend.getIcon(backend.displayedIconName)
+
+        focus: true
+        Keys.enabled: true
+        Keys.onPressed: {
+            if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter){
+                pasteButton.pasted();
+            }
+        }
 
         Row {
             id: topLine
@@ -56,43 +111,38 @@
                 height: 28
                 radius: width / 2
                 border.width: 1
-                border.color: Qt.rgba(255, 255, 255, 0.05)
-                color: Qt.rgba(55/255, 144/255, 250/255, 0.8)
-
+                border.color: Qt.rgba(0, 0, 0, 0.05)
+                color: backend.displayingType !== backend.originalType ? highlightColor : Qt.rgba(0, 0, 0, 0.03)
                 // 深色主题下反色
                 UkuiItems.Icon {
                     height: 14
                     width: 14
                     anchors.centerIn: parent
-                    mode: UkuiItems.Icon.ForceHighlight
-                    source: backend.getIcon(menuBack.restoreIconName);
+                    mode: backend.displayingType !== backend.originalType ? UkuiItems.Icon.Highlight : UkuiItems.Icon.Normal
+                    source: menuBack.restoreIconName
+                }
+
+                ToolTip {
+                    text: backend.displayingType !== backend.originalType ? qsTr("click to cancel conversion") : qsTr("click to switch to the original format")
+                    visible: restoreBtnArea.containsMouse
                 }
+
                 MouseArea {
                     id: restoreBtnArea
                     anchors.fill: parent
                     hoverEnabled: true
-
-                    onEntered: {
-                        restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 1)
-                    }
-
-                    onExited: {
-                        restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 0.8)
-                    }
-
                     onClicked: {
-                        var currentType = backend.originalType
-                        if (currentType === menuBack.nowCurrentType){
+                        var originalType = backend.originalType
+                        if (originalType === backend.displayingType){
+                            // setDisplayingType和switchToSpecifiedPage对顺序有要求
+                            backend.setDisplayingType(menuBack.lastDisplayedType)
+                            stack.switchToSpecifiedPage(menuBack.lastDisplayedType)
                             return
                         }
-                        menuBack.nowCurrentType = currentType;
-                        if (currentType === ContentType.PlainText) {
-                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-                        } else if (currentType === ContentType.RichText) {
-                            stack.replace(stack.currentItem, richTextComponent.createObject())
-                        } else if (currentType === ContentType.Image){
-                            stack.replace(stack.currentItem, imageComponent.createObject())
-                        }
+
+                        menuBack.lastDisplayedType = backend.displayingType
+                        backend.setDisplayingType(originalType)
+                        stack.switchToSpecifiedPage(originalType)
                     }
                 }
             }
@@ -113,64 +163,130 @@
                     rotation: buttonMenu.visible ? 180 : 0
                 }
 
+                ToolTip {
+                    text: qsTr("more options")
+                    visible: moreOptionArea.containsMouse && !buttonMenu.visible
+                }
+
                 MouseArea {
+                    id: moreOptionArea
                     anchors.fill: parent
-                    onClicked: {
-                        buttonMenu.open()
+                    hoverEnabled: true
+                    property bool menuVisible: false
+                    onPressed: {
+                        if (!menuVisible) {
+                            buttonMenu.open()
+                            menuVisible = true
+                        } else {
+                            menuVisible = false
+                        }
                     }
                 }
+            }
+        }
+
+        Rectangle {
+            id: menuBackground
+            anchors.right: parent.right
+            anchors.top: topLine.bottom
+            width: buttonMenu.width + paddings * 2
+            height: buttonMenu.height + paddings * 2
+            visible: buttonMenu.visible
+            color: "transparent"
+            // 阴影区域
+            ShadowComponent {
+                visible: true
+                anchors.fill: parent
+                radius: paddings * 2
+                shadowWidth: paddings
+            }
+
+            // 关联菜单
+            Menu {
+                id: buttonMenu
+                width: control.menuItemWidth
+                anchors.centerIn: menuBackground
+                background: Rectangle {
+                    anchors.fill: parent
+                    radius: paddings * 2
+                    color: "white"
+                }
+
 
-                // 关联菜单
-                Menu {
-                    id: buttonMenu
-                    width: 120
-                    y: 42
-                    Repeater {
-                        id: control
-                        model: backend.contentMenus
-                        delegate: MenuItem {
-                            text: modelData.itemName
-                            onTriggered: {
-                                var currentType = backend.contentMenus[index].contentType
-                                if (currentType === menuBack.nowCurrentType){
-                                    return
-                                }
-
-                                menuBack.nowCurrentType = currentType;
-                                if (currentType === ContentType.PlainText) {
-                                    stack.replace(stack.currentItem, plainTextComponent.createObject())
-                                } else if (currentType === ContentType.RichText) {
-                                    stack.replace(stack.currentItem, richTextComponent.createObject())
-                                } else if (currentType === ContentType.Image){
-                                    stack.replace(stack.currentItem, imageComponent.createObject())
-                                }
+                Repeater {
+                    id: control
+                    model: backend.contentMenus
+
+                    property int menuItemWidth: 120
+
+                    delegate: MenuItem {
+                        id: menuItem
+                        width: control.menuItemWidth
+                        text: modelData.itemName
+                        contentItem: Row {
+                            spacing: paddings
+                            Image {
+                                x: paddings * 2
+                                height: 16
+                                width: 16
+                                fillMode: Image.PreserveAspectFit
+                                mipmap: true
+                                anchors.verticalCenter: parent.verticalCenter
+                                source: Qt.resolvedUrl("image://theme/" + modelData.iconName)
+                            }
+                            Label {
+                                id: label
+                                text: menuItem.text
+                                font: menuItem.font
+                                verticalAlignment: Text.AlignVCenter
                             }
                         }
-                    }
-
-                    function removeItem() {
-                        for (var i = 0; i < control.model.length; i++) {
-                             if(control.model[i].contentType === ContentType.Original) {
-                                 backend.removeContentMenu(i); // 删除项
-                                 break; // 只删除第一个匹配的项
-                             }
+                        highlighted: buttonMenu.currentIndex === index
+                        background: Rectangle {
+                            anchors.fill: menuItem
+                            color: "transparent"
+                            radius: paddings
+                            Rectangle {
+                                width: parent.width - paddings * 2
+                                height: parent.height - paddings * 2
+                                radius: paddings
+                                anchors.centerIn: parent
+                                color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
+                            }
+                        }
+                        MouseArea {
+                            anchors.fill: parent
+                            hoverEnabled: true
+                            onEntered: buttonMenu.currentIndex = index
+                            onExited: buttonMenu.currentIndex = -1
+                            onClicked: menuItem.triggered()
+                        }
+                        onTriggered: {
+                            var currentType = backend.contentMenus[index].contentType
+                            if (currentType === backend.displayingType){
+                                return
+                            }
+                            backend.setDisplayingType(currentType)
+                            stack.switchToSpecifiedPage(currentType)
+                        }
+                        Component.onCompleted: {
+                            var contentItemWidth = 16 + label.contentWidth +
+                                    control.count*paddings + paddings * 3
+                            control.menuItemWidth = control.menuItemWidth >= contentItemWidth ?
+                                        control.menuItemWidth : contentItemWidth
                         }
                     }
+                }
 
-                    Component.onCompleted: {
-                        removeItem();
-                        var type = backend.displayedType
-                        if (type === ContentType.PlainText) {
-                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-                        } else if (type === ContentType.RichText) {
-                            stack.replace(stack.currentItem, richTextComponent.createObject())
-                        } else if (type === ContentType.Image){
-                            stack.replace(stack.currentItem, imageComponent.createObject())
+                function removeItem() {
+                    for (var i = 0; i < control.model.length; i++) {
+                        if(control.model[i].contentType === ContentType.Original) {
+                            backend.removeContentMenu(i); // 删除项
+                            break; // 只删除第一个匹配的项
                         }
                     }
                 }
             }
-
         }
 
         StackView {
@@ -181,6 +297,17 @@
             anchors.bottom: buttomLine.top
             anchors.left: parent.left
             anchors.right: parent.right
+
+            function switchToSpecifiedPage(currentType)
+            {
+                if (currentType === ContentType.PlainText) {
+                    replace(currentItem, plainTextComponent.createObject())
+                } else if (currentType === ContentType.RichText) {
+                    replace(currentItem, richTextComponent.createObject())
+                } else if (currentType === ContentType.Image){
+                    replace(currentItem, imageComponent.createObject())
+                }
+            }
         }
 
         Row {
@@ -191,72 +318,91 @@
             anchors.right: parent.right
             rightPadding: 8
             bottomPadding: 12
-            Label {
-                id: cancelButton
-                width: 41
-                height: 32
-                Text {
-                    text: "X"
+            Rectangle {
+                id: operateButton
+                width: 81 + 2 * paddings
+                height: 32 + 2 * paddings
+                ShadowComponent {
+                    visible: true
                     anchors.fill: parent
-                    elide: Text.ElideRight
-                    textFormat: Text.RichText
-                    verticalAlignment: Text.AlignVCenter
-                    horizontalAlignment: Text.AlignHCenter
-                }
-                background: Rectangle {
-                    width: cancelButton.width-4
-                    height: cancelButton.height-4
-                    anchors.centerIn: parent
-                    radius: 5
-                    color: Qt.rgba(255, 255, 255, 1)
-                    layer.enabled: true;
-                    layer.effect: DropShadow {
-                        radius: 5
-                        samples: 25;
-                    }
+                    radius: paddings
+                    shadowWidth: paddings
                 }
 
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                        clipboardWindow.visible = false
+                Item {
+                    anchors.right: seperator.left
+                    anchors.verticalCenter: parent.verticalCenter
+                    width: 40
+                    height: 32
+                    UkuiItems.Icon {
+                        height: 16
+                        width: 16
+                        anchors.centerIn: parent
+                        source: backend.getIcon("application-exit-symbolic")
+                    }
+
+                    ToolTip {
+                        text: qsTr("cancel")
+                        visible: cancelArea.containsMouse
+                    }
+
+                    MouseArea {
+                        id: cancelArea
+                        anchors.fill: parent
+                        hoverEnabled: true
+                        onClicked: {
+                            clipboardWindow.visible = false
+                            backend.setClipboardWindowVisible(false)
+                        }
                     }
                 }
-            }
 
-            Label {
-                id: pasteButton
-                width: 41
-                height: 32
-                Text {
-                    text: "\u2713"
-                    anchors.fill: parent
-                    elide: Text.ElideRight
-                    textFormat: Text.RichText
-                    verticalAlignment: Text.AlignVCenter
-                    horizontalAlignment: Text.AlignHCenter
-                }
-                background: Rectangle {
-                    width: pasteButton.width-4
-                    height: pasteButton.height-4
+                Rectangle {
+                    id: seperator
+                    width: 1
+                    height: 30
+                    color: Qt.rgba(0, 0, 0, 0.18)
                     anchors.centerIn: parent
-                    radius: 5
-                    color: Qt.rgba(255, 255, 255, 1)
-                    layer.enabled: true;
-                    layer.effect: DropShadow {
-                        radius: 5
-                        samples: 25;
-                    }
                 }
 
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
+                Item {
+                    id: pasteButton
+                    anchors.left: seperator.right
+                    anchors.verticalCenter: parent.verticalCenter
+                    width: 40
+                    height: 32
+                    UkuiItems.Icon {
+                        height: 16
+                        width: 16
+                        anchors.centerIn: parent
+                        source: backend.getIcon("object-select-symbolic")
+                    }
+
+                    ToolTip {
+                        text: qsTr("confirm pasting")
+                        visible: confirmArea.containsMouse
+                    }
+
+                    function pasted() {
+                        var currentType = backend.displayingType
+                        // 使用TextEdit自带的函数将文本拷贝到剪切板
+                        if (currentType === ContentType.Image) {
+                            backend.copyToClipboard(currentType)
+                        } else {
+                            stack.currentItem.copyToClipboard()
+                        }
                         clipboardWindow.visible = false
-                        var currentType = menuBack.nowCurrentType
-                        backend.copyToClipboard(currentType)
+                        backend.setClipboardWindowVisible(false)
                         backend.performPasteOperation()
-                        backend.pasteClicked()
+                    }
+
+                    MouseArea {
+                        id: confirmArea
+                        anchors.fill: parent
+                        hoverEnabled: true
+                        onClicked: {
+                            pasteButton.pasted();
+                        }
                     }
                 }
             }
@@ -264,94 +410,28 @@
 
         Component {
             id: richTextComponent // 富文本项的Component
-            Rectangle {
-                color: Qt.rgba(255, 255, 255, 0.75)
-
-                TextEdit {
-                    anchors.fill: parent
-                    focus: true
-                    wrapMode: TextEdit.Wrap
-                    text: backend.richText
-                    textFormat: Text.RichText
-                    leftPadding: 8
-                    onTextChanged: {
-                        backend.setRichText(text)
-                    }
-                }
+            TextEditArea {
+                visibleWidth: maxContentWidth
+                visibleHeight: maxContentHeight
+                textFormat: Qt.RichText
             }
         }
 
         Component {
             id: imageComponent // 图片项的Component
-            ScrollView {
-                id: scrollView
-                clip: true
-                ScrollBar.horizontal.policy: scrollView.width < scrollView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-                ScrollBar.vertical.policy: scrollView.height < scrollView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-                property int columns: backend.imageNumber() > 3 ? 4 : backend.imageNumber()
-
-                function getImageSize()
-                {
-                    var max_height = 330
-                    var max_width = 544
-                    var imageWidth = backend.imageSize.width
-                    var imageHeight = backend.imageSize.height
-                    var thumbHeight = max_height
-                    var thumbWidth = Math.floor(max_height * imageWidth / imageHeight)
-                    if (thumbWidth > max_width) {
-                        thumbWidth = max_width
-                        thumbHeight = Math.floor(max_width * imageHeight / imageWidth)
-                    }
-                    return Qt.size(thumbWidth, thumbHeight)
-                }
-
-                GridLayout {
-                    anchors.fill: parent
-                    columns: scrollView.columns
-                    rowSpacing: 10
-                    columnSpacing: 10
-
-                    Repeater {
-                        id: imageRepeater
-                        model: backend.imageNumber()
-
-                        delegate: Rectangle {
-                            width: scrollView.width
-                            height: scrollView.height
-                            color: "transparent"
-                            Image {
-                                id: screenshot
-                                cache: false
-                                anchors.centerIn: parent
-                                sourceSize: scrollView.getImageSize()
-                                fillMode: Image.PreserveAspectFit
-                                source: "image://inMemoryImages/Image"+index
-                            }
-                        }
-                    }
-                }
-
+            ImagePreviewArea {
+                visibleWidth: maxContentWidth
+                visibleHeight: maxContentHeight
             }
         }
 
         Component {
             id: plainTextComponent // 纯文本项的Component
-            Rectangle {
-                color: Qt.rgba(255, 255, 255, 0.75)
-
-                TextEdit {
-                    id: test
-                    anchors.fill: parent
-                    focus: true
-                    wrapMode: TextEdit.Wrap
-                    text: backend.plainText
-                    leftPadding: 8
-                    onTextChanged: {
-                        backend.setPlainText(text)
-                    }
-                }
+            TextEditArea {
+                visibleWidth: maxContentWidth
+                visibleHeight: maxContentHeight
+                textFormat: Qt.PlainText
             }
         }
-
     }
 }
diff -Nru ukui-clipboard-1.0.0.0/FunctionMenuWindow.qml ukui-clipboard-2.0.0.0/FunctionMenuWindow.qml
--- ukui-clipboard-1.0.0.0/FunctionMenuWindow.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/FunctionMenuWindow.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,126 @@
+import QtQuick 2.15
+import QtQuick.Window 2.15
+import QtQuick.Controls 2.15
+import ContentMenu 1.0
+import org.ukui.quick.platform 1.0 as Platform
+
+ApplicationWindow {
+    id: contentWindow
+    width: optionMenu.width + leftpaddings * 2
+    maximumWidth: optionMenu.width + leftpaddings * 2
+    minimumWidth: optionMenu.width + leftpaddings * 2
+    maximumHeight: optionMenu.minContextHeight + topPaddings * 2
+    minimumHeight: maximumHeight
+    height: maximumHeight
+    title: "Function Menu Window"
+    property int leftpaddings: 4
+    property int topPaddings: 6
+    // 设置窗口背景颜色为透明,以便于显示圆角效果
+    color: "transparent"
+
+
+    Connections {
+        target: backend
+        function onContentMenuVisibleChanged(visible) {
+            contentWindow.visible = visible
+        }
+    }
+    onVisibleChanged: {
+        if (visible) {
+            optionMenu.visible = true
+        }
+    }
+    onActiveChanged: {
+        if (active) {
+            // 将移送窗口位置放到onActiveChanged中执行,因为在onVisibleChanged中
+            // 移动位置低概率在X11下不生效,从而显示到位置(0, 0)
+            var pos = backend.getGlobalMousePosition()
+            x = pos.x + 2
+            y = pos.y + 2
+            backend.processClipboardData()
+        }
+    }
+    onFocusObjectChanged: {
+        if (object === null) {
+            visible = false
+            optionMenu.currentIndex = -1
+        }
+    }
+
+    background: Rectangle {
+        id: windowback
+        anchors.fill: parent
+        color: "white"
+        radius: Platform.Theme.windowRadius
+    }
+
+    Menu {
+        id: optionMenu
+        anchors.centerIn: parent
+        width: control.menuItemWidth
+        visible: true
+        currentIndex: -1
+        property int minContextHeight: contentHeight < 32 ? 32 : contentHeight
+        background: Rectangle {
+            anchors.fill: parent
+            color: windowback.color
+            radius: Platform.Theme.windowRadius
+        }
+        onVisibleChanged: {
+            if (!visible) {
+                contentWindow.visible = false
+                currentIndex = -1
+            }
+        }
+
+        Repeater {
+            id: control
+            model: backend.contentMenus
+            width: menuItemWidth
+
+            property int menuItemWidth: 140 - leftpaddings * 2
+
+            delegate: MenuItem {
+                id: menuItem
+                width: control.menuItemWidth
+                height: 32
+                highlighted: optionMenu.currentIndex === index
+                contentItem: Label {
+                    id: label
+                    text: modelData.itemName
+                    font: menuItem.font
+                    verticalAlignment: Text.AlignVCenter
+                    leftInset: 10
+                }
+                background: Rectangle {
+                    anchors.fill: menuItem
+                    radius: contentWindow.leftpaddings
+                    anchors.centerIn: parent
+                    color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
+                }
+                onTriggered: {
+                    contentWindow.visible = false
+                    optionMenu.currentIndex = -1
+                    var currentType =  backend.contentMenus[index].contentType
+                    if (currentType === ContentType.Original) {
+                        backend.performPasteOperation()
+                    } else {
+                        backend.setDisplayingType(currentType)
+                        backend.showClipboardWindow()
+                    }
+                }
+                MouseArea {
+                    anchors.fill: parent
+                    hoverEnabled: true
+                    onEntered: optionMenu.currentIndex = index
+                    onExited: optionMenu.currentIndex = -1
+                    onClicked: menuItem.triggered()
+                }
+                Component.onCompleted: {
+                    control.menuItemWidth = control.menuItemWidth >= (label.contentWidth + leftPadding*2) ?
+                                control.menuItemWidth : (label.contentWidth + leftPadding*2)
+                }
+            }
+        }
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/ImagePreviewArea.qml ukui-clipboard-2.0.0.0/ImagePreviewArea.qml
--- ukui-clipboard-1.0.0.0/ImagePreviewArea.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/ImagePreviewArea.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,54 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
+import ContentMenu 1.0
+
+Item {
+    id: root
+    property int visibleWidth: 0
+    property int visibleHeight: 0
+    Rectangle {
+        width: parent.visibleWidth
+        height: parent.visibleHeight
+        anchors.horizontalCenter: parent.horizontalCenter
+        color: "transparent"
+
+        Flickable {
+            id: flick
+            anchors.fill: parent
+            contentWidth: screenshot.paintedWidth
+            contentHeight: screenshot.paintedHeight
+            boundsMovement: Flickable.StopAtBounds
+            clip: true
+            ScrollBar.vertical: ScrollBar {
+                active: true
+                visible: flick.contentHeight > flick.height
+            }
+            ScrollBar.horizontal: ScrollBar {
+                active: true
+                visible: flick.contentWidth > flick.width
+            }
+
+            // 鼠标事件处理区域
+            MouseArea {
+                anchors.fill: parent
+                onWheel: {
+                    if (wheel.modifiers & Qt.ShiftModifier) {
+                        flick.contentX -= wheel.angleDelta.y
+                    } else {
+                        flick.contentY -= wheel.angleDelta.y
+                    }
+                }
+            }
+
+            Image {
+                id: screenshot
+                x: root.width > paintedWidth ? Math.round((root.width - paintedWidth) / 2) : 0
+                y: root.height > paintedHeight ? Math.round((root.height - paintedHeight) / 2) : 0
+                cache: false
+                fillMode: Image.PreserveAspectFit
+                source: "image://inMemoryImages/Image0"
+            }
+        }
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/ShadowComponent.qml ukui-clipboard-2.0.0.0/ShadowComponent.qml
--- ukui-clipboard-1.0.0.0/ShadowComponent.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/ShadowComponent.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2022, KylinSoft Co., Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
+
+import QtQuick 2.0
+import QtGraphicalEffects 1.12
+
+import org.ukui.quick.items 1.0 as UkuiItems
+import org.ukui.quick.platform 1.0 as Platform
+
+// 阴影
+Item {
+    id: root
+
+    property int radius: 8
+    property int shadowWidth: 8
+
+    layer.enabled: true;
+    layer.effect: OpacityMask {
+        maskSource: Rectangle {
+            width: root.width
+            height: root.height
+            radius: root.shadowWidth + root.radius
+            color: "transparent"
+            border.width: root.shadowWidth
+            border.color: "white"
+        }
+    }
+
+    Rectangle {
+        x: parent.shadowWidth
+        y: parent.shadowWidth
+        width: parent.width - parent.shadowWidth * 2
+        height: parent.height - parent.shadowWidth * 2
+        radius: parent.radius
+
+        layer.enabled: true
+        layer.effect: DropShadow {
+            radius: 12
+            samples: 25
+            color: Platform.Theme.color(Platform.Theme.Shadow, Platform.Theme.Active, 0.16)
+        }
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/TextEditArea.qml ukui-clipboard-2.0.0.0/TextEditArea.qml
--- ukui-clipboard-1.0.0.0/TextEditArea.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/TextEditArea.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,90 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import ContentMenu 1.0
+
+Item {
+    id: root
+    property int visibleWidth: 0
+    property int visibleHeight: 0
+    property int textFormat: Qt.RichText
+    Rectangle {
+        width: parent.visibleWidth
+        height: parent.visibleHeight
+        anchors.horizontalCenter: parent.horizontalCenter
+        color: "transparent"
+
+        Flickable {
+            id: flick
+            anchors.fill: parent
+            contentWidth: textEdit.paintedWidth
+            contentHeight: textEdit.paintedHeight
+            boundsMovement: Flickable.StopAtBounds
+            clip: true
+            ScrollBar.vertical: ScrollBar {
+                active: true
+                visible: flick.contentHeight > flick.height
+            }
+            ScrollBar.horizontal: ScrollBar {
+                active: true
+                visible: flick.contentWidth > flick.width
+            }
+
+            // 鼠标事件处理区域
+            MouseArea {
+                anchors.fill: parent
+                onWheel: {
+                    if (wheel.modifiers & Qt.ShiftModifier) {
+                        flick.contentX -= wheel.angleDelta.y
+                    } else {
+                        flick.contentY -= wheel.angleDelta.y
+                    }
+                }
+            }
+
+            TextEdit {
+                id: textEdit
+                focus: true
+                selectByMouse: true
+                wrapMode: TextEdit.Wrap
+                text: ""
+                textFormat: root.textFormat
+                onCursorRectangleChanged: {
+                    flick.ensureVisible(cursorRectangle)
+                }
+                Connections {
+                    target: backend
+                    function onPlainTextChanged() {
+                        textEdit.text = backend.plainText
+                    }
+                }
+                Component.onCompleted: {
+                    // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
+                    if (backend.originalType === ContentType.Image && backend.displayingType === ContentType.PlainText) {
+                        text = backend.plainText
+                    } else {
+                        this.clear()
+                        this.paste()
+                    }
+                    flick.contentX = 0
+                    flick.contentY = 0
+                }
+            }
+
+            function ensureVisible(r) {
+                if (contentX >= r.x)
+                    contentX = r.x;
+                else if (contentX + width <= r.x + r.width)
+                    contentX = r.x + r.width - width;
+                if (contentY >= r.y)
+                    contentY = r.y;
+                else if (contentY + height <= r.y + r.height)
+                    contentY = r.y + r.height - height;
+            }
+        }
+    }
+
+    function copyToClipboard() {
+        textEdit.selectAll()
+        textEdit.copy()
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/clipboardbackend.cpp ukui-clipboard-2.0.0.0/clipboardbackend.cpp
--- ukui-clipboard-1.0.0.0/clipboardbackend.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/clipboardbackend.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -10,6 +10,9 @@
 #include <QGuiApplication>
 #include <QQmlApplicationEngine>
 #include <QQmlContext>
+#include <QWindow>
+#include <QtConcurrent>
+#include <QGSettings/QGSettings>
 
 // kf5
 #include <KF5/KGlobalAccel/KGlobalAccel>
@@ -19,24 +22,60 @@
 #include <X11/keysymdef.h>
 #include <X11/keysym.h>
 
-#include "titlelesswindow.h"
+// kysdk
+#include <kysdk/applications/windowmanager/windowmanager.h>
+#include <ukuistylehelper/ukui-shell-manager.h>
 
 ClipboardBackend::ClipboardBackend(QObject *parent)
     : QObject{parent}
     , m_imageProvider(new InMemoryImageProvider())
+    , m_isWayland(QGuiApplication::platformName().startsWith(QStringLiteral("wayland")))
 {
-    qmlRegisterType<TitleLessWindow>("TitleLessWindow", 1, 0, "DeactiveWindow");
+    //TODO:屏蔽快捷键设置,由usd统一设置
     monitorShortCut();
+    // 加0.1s的延时保证快捷键生效
+    m_timer.setInterval(100);
+    m_timer.setSingleShot(true);
+    if (m_isWayland) {
+        m_pNormalTip = new kdk::KBallonTip();
+        m_pNormalTip->setWindowFlag(Qt::FramelessWindowHint);
+        m_pNormalTip->setAttribute(Qt::WA_TranslucentBackground);
+        m_pNormalTip->setTipType(kdk::TipType::Normal);
+        m_pNormalTip->setText(tr("Successfully copied, please paste at the corresponding location"));
+    }
+    connect(&m_timer, &QTimer::timeout, this, &ClipboardBackend::pasteClicked);
+
+    //监听主题变化
+    monitorIconThemeChange();
 }
 
-void ClipboardBackend::setDisplayedType(int type)
+void ClipboardBackend::setDisplayingType(int type)
 {
-    if (m_displayedType == type) {
+    if (m_displayingType == type) {
         return;
     }
 
-    m_displayedType = type;
-    emit displayedTypeChanged();
+    m_displayingType = type;
+    emit displayingTypeChanged();
+
+    switch (m_displayingType) {
+    case ContentMenu::PlainText:
+        m_displayedIconName = "ukui-idtext-symbolic";
+        break;
+    case ContentMenu::RichText:
+        m_displayedIconName = "ukui-idtext-symbolic";
+        break;
+    case ContentMenu::Image:
+        m_displayedIconName = "image-x-generic-symbolic";
+        break;
+    case ContentMenu::Original:
+        m_displayedIconName = "";
+        break;
+    default:
+        m_displayedIconName = "";
+        break;
+    }
+    emit displayedIconNameChanged();
 }
 
 void ClipboardBackend::setOriginalType(int type)
@@ -87,6 +126,7 @@
 {
     if (m_imageProvider) {
         m_imageProvider->addImage(image);
+        setImageSize(image.size());
     }
 }
 
@@ -99,45 +139,76 @@
 
 bool ClipboardBackend::processClipboardData()
 {
+    //从qclipboard中获取当前复制的内容
+    qDebug()<<"从qclipboard中获取当前复制的内容";
     const QClipboard *clipboard = QGuiApplication::clipboard();
     const QMimeData *mimeData = clipboard->mimeData();
     if (mimeData == nullptr) {
         return false;
     }
 
+    //qclipoard中没有数据则返回false,不清楚为啥要判断是否在X环境
+    if (KWindowSystem::isPlatformX11() && mimeData->html().isEmpty() && mimeData->text().isEmpty()
+            && mimeData->urls().size() == 0 && !mimeData->hasImage()) {
+        return false;
+    }
+
     this->clearContentMenu();
     this->clearImages();
-    if (mimeData->hasImage()) {
-        QImage image = qvariant_cast<QImage>(mimeData->imageData());
+
+    qDebug()<<"mimeData->urls().size()="<<mimeData->urls().size();
+    if (mimeData->urls().size() > 0) {
+        qDebug()<<"获取"<<mimeData->urls().size()<<"个urls";
+        // TODO: 目前只支持对图片的复制,且只支持一张图片的复制识别操作
+        QImage image(mimeData->urls().at(0).path());
+        if (image.isNull()) {
+            qDebug()<<"转换为图片失败";
+            return false;
+        }
         this->addImage(image);
-        setImageSize(image.size());
-        this->m_plainText = convertImageToPlainText(image);
-        qDebug()<<"图转文"<<m_plainText;
+        QtConcurrent::run([this, &image]() {
+            setPlainText(convertImageToPlainText(image));
+        });
         setOriginalType(ContentMenu::Image);
-        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-    } else if (mimeData->hasHtml()) {
+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
+    } else if (mimeData->hasHtml() && !mimeData->hasFormat("Art::Table ClipFormat")) {
+        qDebug()<<"获取到了html,并且不带格式";
         this->m_richText = mimeData->html();
         this->m_plainText = clipboard->text();
         setOriginalType(ContentMenu::RichText);
-        this->addImage(convertRichTextToImage(this->m_richText, QSize(450, 246)));
-        setImageSize(QSize(450, 246));
-        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为图片"));
-        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
+        this->addImage(convertRichTextToImage(this->m_richText));
+        this->addContentMenu(new ContentMenu(ContentMenu::Image, tr("convert to picture")));
+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("convert to plaintext")));
+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
+    } else if (mimeData->hasImage() && !mimeData->hasText()) {
+        qDebug()<<"获取到了Image";
+        QImage image = qvariant_cast<QImage>(mimeData->imageData());
+        this->addImage(image);
+        QtConcurrent::run([this, &image]() {
+            setPlainText(convertImageToPlainText(image));
+        });
+        setOriginalType(ContentMenu::Image);
+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
     } else {
+        qDebug()<<"获取到了文本";
         this->m_plainText = clipboard->text();
         setOriginalType(ContentMenu::PlainText);
-        this->addImage(convertPlainTextToImage(this->m_plainText, QSize(450, 246)));
-        setImageSize(QSize(450, 246));
-        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为图片"));
-        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
+        this->addImage(convertPlainTextToImage(this->m_plainText));
+        this->addContentMenu(new ContentMenu(ContentMenu::Image,tr("convert to picture")));
+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
     }
     return true;
 }
 
+void ClipboardBackend::setClipboardWindowVisible(bool visible) {
+    m_clipboardWindowVisible = visible;
+}
+
 void ClipboardBackend::open()
 {
+    qDebug()<<"Backend open!";
     if (processClipboardData()) {
         showContentMenu();
     }
@@ -154,6 +225,10 @@
     KGlobalAccel::self()->setDefaultShortcut(action, QList<QKeySequence>() << keySeq);
     KGlobalAccel::self()->setShortcut(action, QList<QKeySequence>() << keySeq);
     connect(action, &QAction::triggered, this, [this]() {
+        qDebug() <<"快捷键触发" ;
+        if (m_clipboardWindowVisible) {
+            return;
+        }
         if (processClipboardData()) {
             showContentMenu();
         }
@@ -162,46 +237,91 @@
 
 void ClipboardBackend::showContentMenu()
 {
+    // 必须写在前面,使得 qml 组件的 visible 属性为 true,wayland 下 removeHeaderBar 才能生效
     emit contentMenuVisibleChanged(true);
+
+    QWindowList m_windowList = qGuiApp->allWindows();
+    foreach (QWindow *window, m_windowList) {
+        if (window->title() == "Function Menu Window") {
+            // 这些属性需要在窗口创建前设置,否则可能不生效
+            kdk::WindowManager::self()->setSkipTaskBar(window, true);
+            kdk::WindowManager::self()->setSkipSwitcher(window, true);
+            if (m_isWayland) {
+                kdk::WindowManager::self()->setOpenUnderCursor(window);
+                UkuiShellManager::getInstance()->removeHeaderBar(window);
+            }
+        }
+    }
+}
+
+void ClipboardBackend::showClipboardWindow()
+{
+    // 必须写在前面,使得 qml 组件的 visible 属性为 true,wayland 下 removeHeaderBar 才能生效
+    emit clipboardWindowVisibleChanged(true);
+    setClipboardWindowVisible(true);
+
+    QWindowList m_windowList = qGuiApp->allWindows();
+    foreach (QWindow *window, m_windowList) {
+        if (window->title() == "Preview Window") {
+            // 这些属性需要在窗口创建前设置,否则可能不生效
+            kdk::WindowManager::self()->setSkipTaskBar(window, true);
+            kdk::WindowManager::self()->setSkipSwitcher(window, true);
+            if (m_isWayland) {
+                UkuiShellManager::getInstance()->removeHeaderBar(window);
+            }
+        }
+    }
 }
 
 void ClipboardBackend::pasteClicked() const
 {
-    Display* disp = XOpenDisplay(NULL);
-    if(disp == NULL)
-    {
+    if (m_isWayland) {
+        m_pNormalTip->setTipTime(4000); // 设置显示时间
+        m_pNormalTip->showInfo();
         return;
     }
-    //模拟Ctrl+C的组合键操作
-    int ctrl_value = XK_Control_L;
-    int key_value = XK_V;
-    KeyCode keycode = 0, modcode = 0;
 
-    keycode = XKeysymToKeycode (disp, key_value);
-    if (keycode == 0) return;
-    XTestGrabControl (disp, True);
-
-     //保持Ctrl键
-    if (ctrl_value != 0)
-    {
-        modcode = XKeysymToKeycode(disp, ctrl_value);
-        XTestFakeKeyEvent (disp, modcode, True, 0);
+    Display *disp = XOpenDisplay(NULL);
+    if (disp == NULL) {
+        return;
     }
 
-    //模拟C键按下
-    XTestFakeKeyEvent (disp, keycode, True, 0);
-    XTestFakeKeyEvent (disp, keycode, False, 0);
+    const KeySym ctrlKeySym = XK_Control_L;
+    const KeySym vKeySym = XK_V;
+    KeyCode vCode = XKeysymToKeycode(disp, vKeySym);
+    KeyCode ctrlCode = XKeysymToKeycode(disp, ctrlKeySym);
+    if (vCode == 0 || ctrlCode == 0) {
+        XCloseDisplay(disp);
+        return;
+    }
 
-    //释放Ctrl键
-    if (ctrl_value != 0)
-        XTestFakeKeyEvent (disp, modcode, False, 0);
+    XTestGrabControl(disp, True);
 
-    XSync (disp, False);
-    XTestGrabControl (disp, False);
+    XTestFakeKeyEvent(disp, ctrlCode, True, 0);
+    XTestFakeKeyEvent(disp, vCode, True, 0);
+    XTestFakeKeyEvent(disp, vCode, False, 0);
+    XTestFakeKeyEvent(disp, ctrlCode, False, 0);
+
+    XTestGrabControl(disp, False);
+    // Flush the display to ensure all events are sent
+    XFlush(disp);
 
     XCloseDisplay(disp);
 }
 
+void ClipboardBackend::monitorIconThemeChange() {
+    if (!QGSettings::isSchemaInstalled("org.ukui.style")) {
+        qWarning() << __FUNCTION__ << __FILE__ << "can not find schema org.ukui.style";
+        return;
+    }
+    QGSettings* iconThemeSettings = new QGSettings("org.ukui.style", "/org/ukui/style/");
+    connect(iconThemeSettings, &QGSettings::changed, [&](const QString& value) {
+        if (value == "iconThemeName") {
+            emit iconThemeChanged();
+        }
+    });
+}
+
 int ClipboardBackend::imageNumber() const
 {
     if (m_imageProvider) {
@@ -221,7 +341,11 @@
     if (contentType == ContentMenu::PlainText) {
         clipboard->setText(m_plainText);
     } else if (contentType == ContentMenu::RichText) {
-        clipboard->setText(m_richText);
+        QMimeData *mimedata = new QMimeData();
+        // 必须同时设置富文本和纯文本才能复制到剪切板
+        mimedata->setHtml(m_richText);
+        mimedata->setText(convertRichTextToPlainText(m_richText));
+        clipboard->setMimeData(mimedata);
     } else {
         QList<QImage> images = m_imageProvider->requestAllImage();
         clipboard->setImage(images[0]);
@@ -230,7 +354,7 @@
 
 void ClipboardBackend::performPasteOperation()
 {
-
+    m_timer.start();
 }
 
 QPoint ClipboardBackend::getGlobalMousePosition() const
@@ -254,6 +378,5 @@
     }
     m_plainText = plainText;
 
-    qDebug()<<"m_plainText"<<m_plainText;
     emit plainTextChanged();
 }
diff -Nru ukui-clipboard-1.0.0.0/clipboardbackend.h ukui-clipboard-2.0.0.0/clipboardbackend.h
--- ukui-clipboard-1.0.0.0/clipboardbackend.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/clipboardbackend.h	2024-12-19 16:45:36.000000000 +0800
@@ -5,13 +5,24 @@
 #include <QScopedPointer>
 #include <QVariant>
 #include <QIcon>
+#include <QTimer>
+#include <kwidget.h>
+#include <kballontip.h>
 #include "data.h"
 
+/*
+ * Q_INVOKABL是个宏定义
+ * 这个宏定义 针对的是函数,不是变量
+ * 经过Q_INVOKABL声明过得函数可以被元对象系统调用
+ * QtQuick 也在元对象系统内,所以再QML中也可以访问这个被声明了的函数
+*/
+
 class ClipboardBackend : public QObject
 {
     Q_OBJECT
     Q_PROPERTY(QVariant contentMenus READ contentMenus NOTIFY contentMenusChanged)
-    Q_PROPERTY(int displayedType READ displayedType WRITE setDisplayedType NOTIFY displayedTypeChanged)
+    Q_PROPERTY(int displayingType READ displayingType WRITE setDisplayingType NOTIFY displayingTypeChanged)
+    Q_PROPERTY(QString displayedIconName READ displayedIconName NOTIFY displayedIconNameChanged)
     Q_PROPERTY(int originalType READ originalType WRITE setOriginalType NOTIFY originalTypeChanged)
     Q_PROPERTY(QSize imageSize READ imageSize WRITE setImageSize NOTIFY imageSizeChanged)
     Q_PROPERTY(QString richText READ richText WRITE setRichText NOTIFY richTextChanged)
@@ -20,8 +31,8 @@
     explicit ClipboardBackend(QObject *parent = nullptr);
     QVariant contentMenus() const { return QVariant::fromValue(m_contentMenus); }
 
-    int displayedType() { return m_displayedType; }
-    Q_INVOKABLE void setDisplayedType(int type);
+    int displayingType() { return m_displayingType; }
+    Q_INVOKABLE void setDisplayingType(int type);
 
     int originalType() { return m_originalType; }
     Q_INVOKABLE void setOriginalType(int type);
@@ -35,15 +46,20 @@
     QString plainText() const { return m_plainText; }
     Q_INVOKABLE void setPlainText(const QString &plainText);
 
-    Q_INVOKABLE QIcon getIcon(QString iconName) {m_icon = QIcon::fromTheme(iconName, m_icon);
-                                                 return m_icon;};
+    Q_INVOKABLE QString displayedIconName() { return m_displayedIconName; }
+    Q_INVOKABLE QIcon getIcon(QString iconName) {
+        return QIcon::fromTheme(iconName);
+    }
 
     Q_INVOKABLE int imageNumber() const;
     Q_INVOKABLE void copyToClipboard(int contentType);
     Q_INVOKABLE void performPasteOperation();
     Q_INVOKABLE QPoint getGlobalMousePosition() const;    
-    Q_INVOKABLE void pasteClicked() const;
     Q_INVOKABLE void removeContentMenu(int index);
+    Q_INVOKABLE void showClipboardWindow();
+    Q_INVOKABLE bool processClipboardData();
+
+    Q_INVOKABLE void setClipboardWindowVisible(bool visible);
 
 public:
     InMemoryImageProvider *getImageProvider();
@@ -54,30 +70,37 @@
     void clearContentMenu();
     void addImage(const QImage &image);
     void clearImages();
-    bool processClipboardData();
     void monitorShortCut();
     void showContentMenu();
+    void pasteClicked() const;
+    void monitorIconThemeChange();
 
 signals:
     void contentMenusChanged();
     void richTextChanged();
     void plainTextChanged();
-    void displayedTypeChanged();
+    void displayingTypeChanged();
+    void displayedIconNameChanged();
     void originalTypeChanged();
     void imageSizeChanged();
     void contentMenuVisibleChanged(bool visible);
-    void mouseClickedOutOfWindow();
+    void clipboardWindowVisibleChanged(bool visible);
+    void iconThemeChanged();
 
 private:
     QList<QObject*> m_contentMenus;
-    int m_displayedType;
+    kdk::KBallonTip* m_pNormalTip;
+    int m_displayingType;
     int m_originalType;
     QSize m_imageSize;
     QString m_richText;
     QString m_plainText;
-    QIcon m_icon;
+    QString m_displayedIconName;
+    QTimer m_timer;
     // 不需要自己释放,engine 会管理释放
     InMemoryImageProvider *m_imageProvider = nullptr;
+    bool m_isWayland = false;
+    bool m_clipboardWindowVisible = false;
 };
 
 #endif // CLIPBOARDBACKEND_H
diff -Nru ukui-clipboard-1.0.0.0/data.cpp ukui-clipboard-2.0.0.0/data.cpp
--- ukui-clipboard-1.0.0.0/data.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/data.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -1,7 +1,25 @@
 #include "data.h"
 
 ContentMenu::ContentMenu(ContentType contentType, const QString &itemName, QObject *parent)
-    : m_contentType(contentType), m_itemName(itemName), QObject(parent) {}
+    : m_contentType(contentType), m_itemName(itemName), QObject(parent) {
+    switch (contentType) {
+    case ContentType::PlainText:
+        m_iconName = "ukui-idtext-symbolic";
+        break;
+    case ContentType::RichText:
+        m_iconName = "ukui-idtext-symbolic";
+        break;
+    case ContentType::Image:
+        m_iconName = "image-x-generic-symbolic";
+        break;
+    case ContentType::Original:
+        m_iconName = "";
+        break;
+    default:
+        m_iconName = "";
+        break;
+    }
+}
 
 ContentMenu::ContentMenu(const ContentMenu &rhs)
 {
diff -Nru ukui-clipboard-1.0.0.0/data.h ukui-clipboard-2.0.0.0/data.h
--- ukui-clipboard-1.0.0.0/data.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/data.h	2024-12-19 16:45:36.000000000 +0800
@@ -9,6 +9,7 @@
     Q_OBJECT
     Q_PROPERTY(ContentType contentType READ contentType CONSTANT)
     Q_PROPERTY(QString itemName READ itemName CONSTANT)
+    Q_PROPERTY(QString iconName READ iconName CONSTANT)
 
 public:
     enum ContentType {
@@ -27,12 +28,14 @@
 
     ContentType contentType() const { return m_contentType; }
     QString itemName() const { return m_itemName; }
+    QString iconName() const { return m_iconName; }
 
 signals:
 
 private:
     ContentType m_contentType;
     QString m_itemName;
+    QString m_iconName;
 };
 
 Q_DECLARE_METATYPE(ContentMenu)
diff -Nru ukui-clipboard-1.0.0.0/debian/changelog ukui-clipboard-2.0.0.0/debian/changelog
--- ukui-clipboard-1.0.0.0/debian/changelog	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/changelog	2024-12-19 16:55:34.000000000 +0800
@@ -1,3 +1,9 @@
+ukui-clipboard (2.0.0.0-ok0.1) huanghe; urgency=medium
+
+  * 同步nile分支代码,合如主界面开发代码
+
+ -- liuliang <liuliang@kylinos.cn>  Thu, 19 Dec 2024 16:55:34 +0800
+
 ukui-clipboard (1.0.0.0-ok1.9) nile; urgency=medium
 
   * BUG号: I9TC2C,I9RYF4,I9RYAE,I9RTZR,IAIE78,IA7JJN,IA7JH4,I9RVS0,I9RTWZ
diff -Nru ukui-clipboard-1.0.0.0/debian/control ukui-clipboard-2.0.0.0/debian/control
--- ukui-clipboard-1.0.0.0/debian/control	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/control	2024-12-19 16:55:34.000000000 +0800
@@ -21,7 +21,8 @@
                libglib2.0-dev,
                libxcb1-dev,
                libukui-quick-dev(>=4.10.1.0),
-               libkysdk-qtwidgets-dev
+               libkysdk-qtwidgets-dev,
+               libukui-log4qt-dev
 Standards-Version: 4.6.0
 Homepage: https://gitee.com/openkylin/ukui-clipboard.git
 Vcs-Browser: https://gitee.com/openkylin/ukui-clipboard.git
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0001-Changelog-1.0.0.0-ok0.4.patch ukui-clipboard-2.0.0.0/debian/patches/0001-Changelog-1.0.0.0-ok0.4.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0001-Changelog-1.0.0.0-ok0.4.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0001-Changelog-1.0.0.0-ok0.4.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,367 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Sat, 11 May 2024 17:07:10 +0800
-Subject: Changelog: 1.0.0.0-ok0.4
-
----
- CMakeLists.txt                          |   5 +-
- qtsingleapplication/CMakeLists.txt.user | 319 --------------------------------
- 2 files changed, 2 insertions(+), 322 deletions(-)
- delete mode 100644 qtsingleapplication/CMakeLists.txt.user
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 04f4d14..b3f31f1 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -34,9 +34,10 @@ find_package(KF5WindowSystem REQUIRED)
- find_package(KF5CoreAddons REQUIRED)
- find_package(Qt5 COMPONENTS Core Quick X11Extras REQUIRED)
- find_package(X11 REQUIRED)
-+find_package(PkgConfig REQUIRED)
- 
- set(EXTERNAL_LIBS "")
--set(PC_PKGS kysdk-waylandhelper gsettings-qt x11 Qt5Xdg)
-+set(PC_PKGS kysdk-waylandhelper)
- foreach(external_lib IN ITEMS ${PC_PKGS})
-     pkg_check_modules(${external_lib} REQUIRED IMPORTED_TARGET ${external_lib})
-     if(${${external_lib}_FOUND})
-@@ -47,7 +48,6 @@ foreach(external_lib IN ITEMS ${PC_PKGS})
- endforeach()
- add_subdirectory(qtsingleapplication)
- include_directories(qtsingleapplication/src)
--include_directories(/usr/include/)
- 
- if(ANDROID)
-     add_library(ukui-clipboard SHARED
-@@ -74,7 +74,6 @@ target_link_libraries(ukui-clipboard PRIVATE
-     Qt5::Core
-     Qt5::Quick
-     Qt5::X11Extras
--    Qt5::Widgets
-     Qt5::QuickWidgets
-     KF5::ConfigCore
-     KF5::WindowSystem
-diff --git a/qtsingleapplication/CMakeLists.txt.user b/qtsingleapplication/CMakeLists.txt.user
-deleted file mode 100644
-index c0488bb..0000000
---- a/qtsingleapplication/CMakeLists.txt.user
-+++ /dev/null
-@@ -1,319 +0,0 @@
--<?xml version="1.0" encoding="UTF-8"?>
--<!DOCTYPE QtCreatorProject>
--<!-- Written by QtCreator 6.0.2, 2024-04-25T20:13:27. -->
--<qtcreator>
-- <data>
--  <variable>EnvironmentId</variable>
--  <value type="QByteArray">{1a65eb07-ee52-4e75-a1fd-d28a7169ab9e}</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.ActiveTarget</variable>
--  <value type="int">0</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.EditorSettings</variable>
--  <valuemap type="QVariantMap">
--   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
--   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
--   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
--   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
--    <value type="QString" key="language">Cpp</value>
--    <valuemap type="QVariantMap" key="value">
--     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
--    </valuemap>
--   </valuemap>
--   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
--    <value type="QString" key="language">QmlJS</value>
--    <valuemap type="QVariantMap" key="value">
--     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
--    </valuemap>
--   </valuemap>
--   <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
--   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
--   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
--   <value type="int" key="EditorConfiguration.IndentSize">4</value>
--   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
--   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
--   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
--   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
--   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
--   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
--   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
--   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
--   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
--   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
--   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
--   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
--   <value type="int" key="EditorConfiguration.TabSize">8</value>
--   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
--   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
--   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
--   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
--   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
--   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
--   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
--   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
--   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.PluginSettings</variable>
--  <valuemap type="QVariantMap">
--   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
--    <value type="bool" key="AutoTest.Framework.Boost">true</value>
--    <value type="bool" key="AutoTest.Framework.CTest">false</value>
--    <value type="bool" key="AutoTest.Framework.Catch">true</value>
--    <value type="bool" key="AutoTest.Framework.GTest">true</value>
--    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
--    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
--   <value type="int" key="AutoTest.RunAfterBuild">0</value>
--   <value type="bool" key="AutoTest.UseGlobal">true</value>
--   <valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
--   <value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
--   <value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.BuildSystem</value>
--   <valuemap type="QVariantMap" key="ClangTools">
--    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
--    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
--    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
--    <value type="int" key="ClangTools.ParallelJobs">2</value>
--    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
--    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
--    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
--    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
--   </valuemap>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.Target.0</variable>
--  <valuemap type="QVariantMap">
--   <value type="QString" key="DeviceType">Desktop</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">桌面</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">桌面</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{9d266a42-f1f4-404f-94ea-e0d9972026b2}</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
--    <value type="QString" key="CMake.Build.Type">Debug</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=Debug
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-Debug</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
--    <value type="QString" key="CMake.Build.Type">Release</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=Release
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-Release</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
--    <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-RelWithDebInfo</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3">
--    <value type="QString" key="CMake.Build.Type">MinSizeRel</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=MinSizeRel
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-MinSizeRel</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">4</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Deploy</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
--    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
--    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
--    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
--    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
--    <valuelist type="QVariantList" key="CustomOutputParsers"/>
--    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
--    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
--    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value>
--    <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
--    <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
--    <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
--    <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.TargetCount</variable>
--  <value type="int">1</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
--  <value type="int">22</value>
-- </data>
-- <data>
--  <variable>Version</variable>
--  <value type="int">22</value>
-- </data>
--</qtcreator>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0002-Changelog-1.0.0.0-ok0.5.patch ukui-clipboard-2.0.0.0/debian/patches/0002-Changelog-1.0.0.0-ok0.5.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0002-Changelog-1.0.0.0-ok0.5.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0002-Changelog-1.0.0.0-ok0.5.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,46 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Mon, 13 May 2024 11:05:46 +0800
-Subject: Changelog: 1.0.0.0-ok0.5
-
----
- clipboardbackend.cpp | 20 ++++++++++----------
- 1 file changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 6054aa8..2c8b503 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -107,16 +107,7 @@ bool ClipboardBackend::processClipboardData()
- 
-     this->clearContentMenu();
-     this->clearImages();
--    if (mimeData->hasImage()) {
--        QImage image = qvariant_cast<QImage>(mimeData->imageData());
--        this->addImage(image);
--        setImageSize(image.size());
--        this->m_plainText = convertImageToPlainText(image);
--        qDebug()<<"图转文"<<m_plainText;
--        setOriginalType(ContentMenu::Image);
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
--        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
--    } else if (mimeData->hasHtml()) {
-+    if (mimeData->hasHtml()) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
-@@ -125,6 +116,15 @@ bool ClipboardBackend::processClipboardData()
-         this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为图片"));
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+    } else if (mimeData->hasImage()) {
-+        QImage image = qvariant_cast<QImage>(mimeData->imageData());
-+        this->addImage(image);
-+        setImageSize(image.size());
-+        this->m_plainText = convertImageToPlainText(image);
-+        qDebug()<<"图转文"<<m_plainText;
-+        setOriginalType(ContentMenu::Image);
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-     } else {
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::PlainText);
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0003-Feat.patch ukui-clipboard-2.0.0.0/debian/patches/0003-Feat.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0003-Feat.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0003-Feat.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,35 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Wed, 15 May 2024 17:52:01 +0800
-Subject: =?utf-8?b?RmVhdDog5aKe5Yqg5LuO5paH5Lu2566h55CG5Zmo5aSN5Yi25Zu+54mH?=
- =?utf-8?b?55qE6K+G5Yir?=
-
----
- clipboardbackend.cpp | 15 ++++++++++++++-
- 1 file changed, 14 insertions(+), 1 deletion(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 2c8b503..3862912 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -107,7 +107,20 @@ bool ClipboardBackend::processClipboardData()
- 
-     this->clearContentMenu();
-     this->clearImages();
--    if (mimeData->hasHtml()) {
-+
-+    if (mimeData->urls().size() > 0) {
-+        // TODO: 目前只支持对图片的复制,且只支持一张图片的复制识别操作
-+        QImage image(mimeData->urls().at(0).path());
-+        if (image.isNull()) {
-+            return false;
-+        }
-+        this->addImage(image);
-+        setImageSize(image.size());
-+        this->m_plainText = convertImageToPlainText(image);
-+        setOriginalType(ContentMenu::Image);
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+    } else if (mimeData->hasHtml()) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0004-Fix.patch ukui-clipboard-2.0.0.0/debian/patches/0004-Fix.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0004-Fix.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0004-Fix.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,99 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Wed, 15 May 2024 22:49:38 +0800
-Subject: =?utf-8?b?Rml4OiDkv67lpI3ml6Dms5XlsIbpooTop4jnqpflj6PkuK3nmoTlr4w=?=
- =?utf-8?b?5paH5pys5aSN5Yi25Yiw5Ymq5YiH5p2/55qE6Zeu6aKY?=
-
----
- ClipboardWindow.qml  | 20 +++++++++++---------
- clipboardbackend.cpp |  7 +++++--
- 2 files changed, 16 insertions(+), 11 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index e494835..286e327 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -252,6 +252,7 @@ MyWd.DeactiveWindow {
-                 MouseArea {
-                     anchors.fill: parent
-                     onClicked: {
-+                        stack.currentItem.saveTextToBackend()
-                         clipboardWindow.visible = false
-                         var currentType = menuBack.nowCurrentType
-                         backend.copyToClipboard(currentType)
-@@ -268,15 +269,17 @@ MyWd.DeactiveWindow {
-                 color: Qt.rgba(255, 255, 255, 0.75)
- 
-                 TextEdit {
-+                    id: richTextEdit
-                     anchors.fill: parent
-                     focus: true
-                     wrapMode: TextEdit.Wrap
-                     text: backend.richText
-                     textFormat: Text.RichText
-                     leftPadding: 8
--                    onTextChanged: {
--                        backend.setRichText(text)
--                    }
-+                }
-+
-+                function saveTextToBackend() {
-+                    backend.setRichText(richTextEdit.text)
-                 }
-             }
-         }
-@@ -330,7 +333,6 @@ MyWd.DeactiveWindow {
-                         }
-                     }
-                 }
--
-             }
-         }
- 
-@@ -340,18 +342,18 @@ MyWd.DeactiveWindow {
-                 color: Qt.rgba(255, 255, 255, 0.75)
- 
-                 TextEdit {
--                    id: test
-+                    id: plainTextEdit
-                     anchors.fill: parent
-                     focus: true
-                     wrapMode: TextEdit.Wrap
-                     text: backend.plainText
-                     leftPadding: 8
--                    onTextChanged: {
--                        backend.setPlainText(text)
--                    }
-+                }
-+
-+                function saveTextToBackend() {
-+                    backend.setPlainText(plainTextEdit.text)
-                 }
-             }
-         }
--
-     }
- }
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 3862912..90aa39a 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -234,7 +234,11 @@ void ClipboardBackend::copyToClipboard(int contentType)
-     if (contentType == ContentMenu::PlainText) {
-         clipboard->setText(m_plainText);
-     } else if (contentType == ContentMenu::RichText) {
--        clipboard->setText(m_richText);
-+        QMimeData *mimedata = new QMimeData();
-+        // 必须同时设置富文本和纯文本才能复制到剪切板
-+        mimedata->setHtml(m_richText);
-+        mimedata->setText(convertRichTextToPlainText(m_richText));
-+        clipboard->setMimeData(mimedata);
-     } else {
-         QList<QImage> images = m_imageProvider->requestAllImage();
-         clipboard->setImage(images[0]);
-@@ -267,6 +271,5 @@ void ClipboardBackend::setPlainText(const QString &plainText)
-     }
-     m_plainText = plainText;
- 
--    qDebug()<<"m_plainText"<<m_plainText;
-     emit plainTextChanged();
- }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0005-Fix.patch ukui-clipboard-2.0.0.0/debian/patches/0005-Fix.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0005-Fix.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0005-Fix.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,62 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Wed, 15 May 2024 23:29:14 +0800
-Subject: =?utf-8?b?Rml4OiDkv67lpI3pvKDmoIfkuI3og73pgInkuK3mlofmnKznmoTpl64=?=
- =?utf-8?b?6aKY?=
-
----
- ClipboardWindow.qml | 10 +++++++---
- 1 file changed, 7 insertions(+), 3 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 286e327..f73f732 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -252,7 +252,7 @@ MyWd.DeactiveWindow {
-                 MouseArea {
-                     anchors.fill: parent
-                     onClicked: {
--                        stack.currentItem.saveTextToBackend()
-+                        stack.currentItem.saveToBackend()
-                         clipboardWindow.visible = false
-                         var currentType = menuBack.nowCurrentType
-                         backend.copyToClipboard(currentType)
-@@ -272,13 +272,14 @@ MyWd.DeactiveWindow {
-                     id: richTextEdit
-                     anchors.fill: parent
-                     focus: true
-+                    selectByMouse: true
-                     wrapMode: TextEdit.Wrap
-                     text: backend.richText
-                     textFormat: Text.RichText
-                     leftPadding: 8
-                 }
- 
--                function saveTextToBackend() {
-+                function saveToBackend() {
-                     backend.setRichText(richTextEdit.text)
-                 }
-             }
-@@ -308,6 +309,8 @@ MyWd.DeactiveWindow {
-                     return Qt.size(thumbWidth, thumbHeight)
-                 }
- 
-+                function saveToBackend() {}
-+
-                 GridLayout {
-                     anchors.fill: parent
-                     columns: scrollView.columns
-@@ -345,12 +348,13 @@ MyWd.DeactiveWindow {
-                     id: plainTextEdit
-                     anchors.fill: parent
-                     focus: true
-+                    selectByMouse: true
-                     wrapMode: TextEdit.Wrap
-                     text: backend.plainText
-                     leftPadding: 8
-                 }
- 
--                function saveTextToBackend() {
-+                function saveToBackend() {
-                     backend.setPlainText(plainTextEdit.text)
-                 }
-             }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0006-Fix.patch ukui-clipboard-2.0.0.0/debian/patches/0006-Fix.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0006-Fix.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0006-Fix.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,24 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Wed, 15 May 2024 23:29:14 +0800
-Subject: =?utf-8?b?Rml4OiDkv67lpI3pvKDmoIfkuI3og73pgInkuK3mlofmnKznmoTpl64=?=
- =?utf-8?b?6aKY?=
-
----
- main.qml | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/main.qml b/main.qml
-index a545b10..0c90c68 100644
---- a/main.qml
-+++ b/main.qml
-@@ -64,6 +64,10 @@ MyWd.DeactiveWindow {
-                         contentWindow.visible = false
-                         var currentType =  backend.contentMenus[index].contentType
-                         if (currentType === ContentType.Original) {
-+                            // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
-+                            if (backend.originalType === ContentType.Image) {
-+                                backend.copyToClipboard(ContentType.Image)
-+                            }
-                             backend.pasteClicked()
-                         } else {
-                             backend.setDisplayedType(currentType)
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0007-Feat-TextEdit.patch ukui-clipboard-2.0.0.0/debian/patches/0007-Feat-TextEdit.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0007-Feat-TextEdit.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0007-Feat-TextEdit.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,320 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Fri, 17 May 2024 17:15:45 +0800
-Subject: =?utf-8?b?RmVhdDog5L+u5aSNVGV4dEVkaXTmmL7npLrlpKfph4/lia/mlofmnKw=?=
- =?utf-8?b?5pWw5o2u56qX5Y+j6Zeq6YCA55qE6Zeu6aKY?=
-
----
- ClipboardWindow.qml  | 154 ++++++++++++++++++++++++++++++++++++---------------
- clipboardbackend.cpp |   6 +-
- clipboardbackend.h   |   4 +-
- main.qml             |   2 +-
- 4 files changed, 117 insertions(+), 49 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index f73f732..68c9ba7 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -14,14 +14,6 @@ MyWd.DeactiveWindow {
-     height: 412
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
--    Connections {
--        target: clipboardWindow
--        function onWindowDeactivated() {
--            console.log("clipboardWindow deactivated!")
--            // 在这里处理窗口失活逻辑
--            clipboardWindow.visible = false
--        }
--    }
-     onVisibleChanged: {
-         if (visible) {
-             var pos = backend.getGlobalMousePosition()
-@@ -87,11 +79,11 @@ MyWd.DeactiveWindow {
-                         }
-                         menuBack.nowCurrentType = currentType;
-                         if (currentType === ContentType.PlainText) {
--                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-+                            stack.push(plainTextComponent)
-                         } else if (currentType === ContentType.RichText) {
--                            stack.replace(stack.currentItem, richTextComponent.createObject())
-+                            stack.push(richTextComponent)
-                         } else if (currentType === ContentType.Image){
--                            stack.replace(stack.currentItem, imageComponent.createObject())
-+                            stack.push(imageComponent)
-                         }
-                     }
-                 }
-@@ -138,11 +130,11 @@ MyWd.DeactiveWindow {
- 
-                                 menuBack.nowCurrentType = currentType;
-                                 if (currentType === ContentType.PlainText) {
--                                    stack.replace(stack.currentItem, plainTextComponent.createObject())
-+                                    stack.push(plainTextComponent)
-                                 } else if (currentType === ContentType.RichText) {
--                                    stack.replace(stack.currentItem, richTextComponent.createObject())
-+                                    stack.push(richTextComponent)
-                                 } else if (currentType === ContentType.Image){
--                                    stack.replace(stack.currentItem, imageComponent.createObject())
-+                                    stack.push(imageComponent)
-                                 }
-                             }
-                         }
-@@ -161,11 +153,11 @@ MyWd.DeactiveWindow {
-                         removeItem();
-                         var type = backend.displayedType
-                         if (type === ContentType.PlainText) {
--                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-+                            stack.push(plainTextComponent)
-                         } else if (type === ContentType.RichText) {
--                            stack.replace(stack.currentItem, richTextComponent.createObject())
-+                            stack.push(richTextComponent)
-                         } else if (type === ContentType.Image){
--                            stack.replace(stack.currentItem, imageComponent.createObject())
-+                            stack.push(imageComponent)
-                         }
-                     }
-                 }
-@@ -252,12 +244,15 @@ MyWd.DeactiveWindow {
-                 MouseArea {
-                     anchors.fill: parent
-                     onClicked: {
--                        stack.currentItem.saveToBackend()
--                        clipboardWindow.visible = false
-                         var currentType = menuBack.nowCurrentType
--                        backend.copyToClipboard(currentType)
-+                        // 使用TextEdit自带的函数将文本拷贝到剪切板
-+                        if (currentType === ContentType.Image) {
-+                            backend.copyToClipboard(currentType)
-+                        } else {
-+                            stack.currentItem.copyToClipboard()
-+                        }
-+                        clipboardWindow.visible = false
-                         backend.performPasteOperation()
--                        backend.pasteClicked()
-                     }
-                 }
-             }
-@@ -268,19 +263,52 @@ MyWd.DeactiveWindow {
-             Rectangle {
-                 color: Qt.rgba(255, 255, 255, 0.75)
- 
--                TextEdit {
--                    id: richTextEdit
-+                // TODO: 将Flickable和TextEdit封装为一个控件
-+                Flickable {
-+                    id: richFlick
-                     anchors.fill: parent
--                    focus: true
--                    selectByMouse: true
--                    wrapMode: TextEdit.Wrap
--                    text: backend.richText
--                    textFormat: Text.RichText
--                    leftPadding: 8
-+                    contentWidth: richTextEdit.paintedWidth
-+                    contentHeight: richTextEdit.paintedHeight
-+                    clip: true
-+                    ScrollBar.vertical: ScrollBar {
-+                        visible: richFlick.contentHeight > richFlick.height
-+                    }
-+                    ScrollBar.horizontal: ScrollBar{
-+                        visible: richFlick.contentWidth > richFlick.width
-+                    }
-+
-+                    TextEdit {
-+                        id: richTextEdit
-+                        focus: true
-+                        selectByMouse: true
-+                        wrapMode: TextEdit.Wrap
-+                        persistentSelection: true
-+                        text: ""
-+                        textFormat: Qt.RichText
-+                        leftPadding: 8
-+                        onCursorRectangleChanged: {
-+                            richFlick.ensureVisible(cursorRectangle)
-+                        }
-+                        Component.onCompleted: {
-+                            this.clear()
-+                            this.paste()
-+                        }
-+                    }
-+
-+                    function ensureVisible(r) {
-+                        if (contentX >= r.x)
-+                            contentX = r.x;
-+                        else if (contentX + width <= r.x + r.width)
-+                            contentX = r.x + r.width - width;
-+                        if (contentY >= r.y)
-+                            contentY = r.y;
-+                        else if (contentY + height <= r.y + r.height)
-+                            contentY = r.y + r.height - height;
-+                    }
-                 }
- 
--                function saveToBackend() {
--                    backend.setRichText(richTextEdit.text)
-+                function copyToClipboard() {
-+                    richTextEdit.copy()
-                 }
-             }
-         }
-@@ -309,10 +337,7 @@ MyWd.DeactiveWindow {
-                     return Qt.size(thumbWidth, thumbHeight)
-                 }
- 
--                function saveToBackend() {}
--
-                 GridLayout {
--                    anchors.fill: parent
-                     columns: scrollView.columns
-                     rowSpacing: 10
-                     columnSpacing: 10
-@@ -322,8 +347,9 @@ MyWd.DeactiveWindow {
-                         model: backend.imageNumber()
- 
-                         delegate: Rectangle {
--                            width: scrollView.width
--                            height: scrollView.height
-+                            // 不减1的话会显示滚动条
-+                            width: scrollView.width - 1
-+                            height: scrollView.height - 1
-                             color: "transparent"
-                             Image {
-                                 id: screenshot
-@@ -344,18 +370,54 @@ MyWd.DeactiveWindow {
-             Rectangle {
-                 color: Qt.rgba(255, 255, 255, 0.75)
- 
--                TextEdit {
--                    id: plainTextEdit
--                    anchors.fill: parent
--                    focus: true
--                    selectByMouse: true
--                    wrapMode: TextEdit.Wrap
--                    text: backend.plainText
--                    leftPadding: 8
-+                Flickable {
-+                    id: plainFlick
-+                    contentWidth: plainTextEdit.paintedWidth
-+                    contentHeight: plainTextEdit.paintedHeight
-+                    clip: true
-+                    ScrollBar.vertical: ScrollBar {
-+                        visible: plainFlick.contentHeight > plainFlick.height
-+                    }
-+                    ScrollBar.horizontal: ScrollBar{
-+                        visible: plainFlick.contentWidth > plainFlick.width
-+                    }
-+
-+                    TextEdit {
-+                        id: plainTextEdit
-+                        focus: true
-+                        selectByMouse: true
-+                        wrapMode: TextEdit.Wrap
-+                        text: ""
-+                        leftPadding: 8
-+                        onCursorRectangleChanged: {
-+                            plainFlick.ensureVisible(cursorRectangle)
-+                        }
-+                        Component.onCompleted: {
-+                            // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
-+                            if (backend.originalType === ContentType.Image) {
-+                                plainTextEdit.text = backend.plainText
-+                                console.log("11111111", text)
-+                            } else {
-+                                this.clear()
-+                                this.paste()
-+                            }
-+                        }
-+                    }
-+
-+                    function ensureVisible(r) {
-+                        if (contentX >= r.x)
-+                            contentX = r.x;
-+                        else if (contentX + width <= r.x + r.width)
-+                            contentX = r.x + r.width - width;
-+                        if (contentY >= r.y)
-+                            contentY = r.y;
-+                        else if (contentY + height <= r.y + r.height)
-+                            contentY = r.y + r.height - height;
-+                    }
-                 }
- 
--                function saveToBackend() {
--                    backend.setPlainText(plainTextEdit.text)
-+                function copyToClipboard() {
-+                    plainTextEdit.copy()
-                 }
-             }
-         }
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 90aa39a..c5177ca 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -27,6 +27,10 @@ ClipboardBackend::ClipboardBackend(QObject *parent)
- {
-     qmlRegisterType<TitleLessWindow>("TitleLessWindow", 1, 0, "DeactiveWindow");
-     monitorShortCut();
-+    // 加0.1s的延时保证快捷键生效
-+    m_timer.setInterval(100);
-+    m_timer.setSingleShot(true);
-+    connect(&m_timer, &QTimer::timeout, this, &ClipboardBackend::pasteClicked);
- }
- 
- void ClipboardBackend::setDisplayedType(int type)
-@@ -247,7 +251,7 @@ void ClipboardBackend::copyToClipboard(int contentType)
- 
- void ClipboardBackend::performPasteOperation()
- {
--
-+    m_timer.start();
- }
- 
- QPoint ClipboardBackend::getGlobalMousePosition() const
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index bb0d0e4..46a434a 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -5,6 +5,7 @@
- #include <QScopedPointer>
- #include <QVariant>
- #include <QIcon>
-+#include <QTimer>
- #include "data.h"
- 
- class ClipboardBackend : public QObject
-@@ -42,7 +43,6 @@ public:
-     Q_INVOKABLE void copyToClipboard(int contentType);
-     Q_INVOKABLE void performPasteOperation();
-     Q_INVOKABLE QPoint getGlobalMousePosition() const;    
--    Q_INVOKABLE void pasteClicked() const;
-     Q_INVOKABLE void removeContentMenu(int index);
- 
- public:
-@@ -57,6 +57,7 @@ private:
-     bool processClipboardData();
-     void monitorShortCut();
-     void showContentMenu();
-+    void pasteClicked() const;
- 
- signals:
-     void contentMenusChanged();
-@@ -76,6 +77,7 @@ private:
-     QString m_richText;
-     QString m_plainText;
-     QIcon m_icon;
-+    QTimer m_timer;
-     // 不需要自己释放,engine 会管理释放
-     InMemoryImageProvider *m_imageProvider = nullptr;
- };
-diff --git a/main.qml b/main.qml
-index 0c90c68..4c2418e 100644
---- a/main.qml
-+++ b/main.qml
-@@ -68,7 +68,7 @@ MyWd.DeactiveWindow {
-                             if (backend.originalType === ContentType.Image) {
-                                 backend.copyToClipboard(ContentType.Image)
-                             }
--                            backend.pasteClicked()
-+                            backend.performPasteOperation()
-                         } else {
-                             backend.setDisplayedType(currentType)
-                             clipboardComponent.createObject()
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0008-Feat-TextEdit.patch ukui-clipboard-2.0.0.0/debian/patches/0008-Feat-TextEdit.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0008-Feat-TextEdit.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0008-Feat-TextEdit.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,117 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Fri, 17 May 2024 17:15:45 +0800
-Subject: =?utf-8?b?RmVhdDog5L+u5aSNVGV4dEVkaXTmmL7npLrlpKfph4/lia/mlofmnKw=?=
- =?utf-8?b?5pWw5o2u56qX5Y+j6Zeq6YCA55qE6Zeu6aKY?=
-
----
- ClipboardWindow.qml | 31 +++++++++++++++++--------------
- 1 file changed, 17 insertions(+), 14 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 68c9ba7..70fd158 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -79,11 +79,11 @@ MyWd.DeactiveWindow {
-                         }
-                         menuBack.nowCurrentType = currentType;
-                         if (currentType === ContentType.PlainText) {
--                            stack.push(plainTextComponent)
-+                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-                         } else if (currentType === ContentType.RichText) {
--                            stack.push(richTextComponent)
-+                            stack.replace(stack.currentItem, richTextComponent.createObject())
-                         } else if (currentType === ContentType.Image){
--                            stack.push(imageComponent)
-+                            stack.replace(stack.currentItem, imageComponent.createObject())
-                         }
-                     }
-                 }
-@@ -130,11 +130,11 @@ MyWd.DeactiveWindow {
- 
-                                 menuBack.nowCurrentType = currentType;
-                                 if (currentType === ContentType.PlainText) {
--                                    stack.push(plainTextComponent)
-+                                    stack.replace(stack.currentItem, plainTextComponent.createObject())
-                                 } else if (currentType === ContentType.RichText) {
--                                    stack.push(richTextComponent)
-+                                    stack.replace(stack.currentItem, richTextComponent.createObject())
-                                 } else if (currentType === ContentType.Image){
--                                    stack.push(imageComponent)
-+                                    stack.replace(stack.currentItem, imageComponent.createObject())
-                                 }
-                             }
-                         }
-@@ -153,11 +153,11 @@ MyWd.DeactiveWindow {
-                         removeItem();
-                         var type = backend.displayedType
-                         if (type === ContentType.PlainText) {
--                            stack.push(plainTextComponent)
-+                            stack.replace(stack.currentItem, plainTextComponent.createObject())
-                         } else if (type === ContentType.RichText) {
--                            stack.push(richTextComponent)
-+                            stack.replace(stack.currentItem, richTextComponent.createObject())
-                         } else if (type === ContentType.Image){
--                            stack.push(imageComponent)
-+                            stack.replace(stack.currentItem, imageComponent.createObject())
-                         }
-                     }
-                 }
-@@ -292,6 +292,7 @@ MyWd.DeactiveWindow {
-                         Component.onCompleted: {
-                             this.clear()
-                             this.paste()
-+                            richFlick.contentY = 0;
-                         }
-                     }
- 
-@@ -308,6 +309,7 @@ MyWd.DeactiveWindow {
-                 }
- 
-                 function copyToClipboard() {
-+                    richTextEdit.selectAll()
-                     richTextEdit.copy()
-                 }
-             }
-@@ -347,9 +349,8 @@ MyWd.DeactiveWindow {
-                         model: backend.imageNumber()
- 
-                         delegate: Rectangle {
--                            // 不减1的话会显示滚动条
--                            width: scrollView.width - 1
--                            height: scrollView.height - 1
-+                            width: scrollView.width
-+                            height: scrollView.height
-                             color: "transparent"
-                             Image {
-                                 id: screenshot
-@@ -372,6 +373,7 @@ MyWd.DeactiveWindow {
- 
-                 Flickable {
-                     id: plainFlick
-+                    anchors.fill: parent
-                     contentWidth: plainTextEdit.paintedWidth
-                     contentHeight: plainTextEdit.paintedHeight
-                     clip: true
-@@ -395,12 +397,12 @@ MyWd.DeactiveWindow {
-                         Component.onCompleted: {
-                             // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
-                             if (backend.originalType === ContentType.Image) {
--                                plainTextEdit.text = backend.plainText
--                                console.log("11111111", text)
-+                                text = backend.plainText
-                             } else {
-                                 this.clear()
-                                 this.paste()
-                             }
-+                            plainFlick.contentY = 0
-                         }
-                     }
- 
-@@ -417,6 +419,7 @@ MyWd.DeactiveWindow {
-                 }
- 
-                 function copyToClipboard() {
-+                    plainTextEdit.selectAll()
-                     plainTextEdit.copy()
-                 }
-             }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0009-changelog.patch ukui-clipboard-2.0.0.0/debian/patches/0009-changelog.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0009-changelog.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0009-changelog.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,9495 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Mon, 20 May 2024 15:05:10 +0800
-Subject: =?utf-8?b?5pu05pawY2hhbmdlbG9n?=
-
----
- CMakeLists.txt                                     |   6 +-
- ClipboardWindow.qml                                | 392 +++++++++------------
- ImagePreviewArea.qml                               |  57 +++
- ShadowComponent.qml                                |  58 +++
- TextEditArea.qml                                   |  70 ++++
- clipboardbackend.cpp                               |  17 +-
- main.cpp                                           |   8 +-
- main.qml                                           | 147 ++++----
- qml.qrc                                            |   3 +
- qtsingleapplication/CMakeLists.txt                 |  13 -
- qtsingleapplication/INSTALL.TXT                    | 254 -------------
- qtsingleapplication/README.TXT                     |  33 --
- qtsingleapplication/buildlib/buildlib.pro          |  13 -
- qtsingleapplication/common.pri                     |  14 -
- qtsingleapplication/configure                      |  25 --
- qtsingleapplication/configure.bat                  |  43 ---
- qtsingleapplication/doc/html/classic.css           | 284 ---------------
- qtsingleapplication/doc/html/images/qt-logo.png    | Bin 4075 -> 0 bytes
- qtsingleapplication/doc/html/index.html            |  48 ---
- .../html/qtsingleapplication-example-loader.html   | 175 ---------
- .../html/qtsingleapplication-example-trivial.html  | 101 ------
- .../doc/html/qtsingleapplication-members.html      | 235 ------------
- .../doc/html/qtsingleapplication-obsolete.html     |  31 --
- .../doc/html/qtsingleapplication.dcf               |  40 ---
- .../doc/html/qtsingleapplication.html              | 162 ---------
- .../doc/html/qtsingleapplication.index             |  90 -----
- .../doc/html/qtsingleapplication.qhp               |  53 ---
- .../qtsinglecoreapplication-example-console.html   | 118 -------
- .../doc/html/qtsinglecoreapplication-members.html  | 126 -------
- .../doc/html/qtsinglecoreapplication.html          |  98 ------
- qtsingleapplication/doc/images/qt-logo.png         | Bin 4075 -> 0 bytes
- qtsingleapplication/doc/index.qdoc                 |  50 ---
- qtsingleapplication/examples/console/console.pro   |   5 -
- qtsingleapplication/examples/console/console.qdoc  |  28 --
- qtsingleapplication/examples/console/main.cpp      |  52 ---
- qtsingleapplication/examples/examples.pro          |   4 -
- qtsingleapplication/examples/loader/file1.qsl      |   1 -
- qtsingleapplication/examples/loader/file2.qsl      |   1 -
- qtsingleapplication/examples/loader/loader.pro     |   6 -
- qtsingleapplication/examples/loader/loader.qdoc    |  44 ---
- qtsingleapplication/examples/loader/main.cpp       | 115 ------
- qtsingleapplication/examples/trivial/main.cpp      |  41 ---
- qtsingleapplication/examples/trivial/trivial.pro   |   5 -
- qtsingleapplication/examples/trivial/trivial.qdoc  |  39 --
- qtsingleapplication/qtsingleapplication.pro        |   5 -
- qtsingleapplication/src/QtLockedFile               |   1 -
- qtsingleapplication/src/QtSingleApplication        |   1 -
- qtsingleapplication/src/qtlocalpeer.cpp            | 177 ----------
- qtsingleapplication/src/qtlocalpeer.h              |  40 ---
- qtsingleapplication/src/qtlockedfile.cpp           | 156 --------
- qtsingleapplication/src/qtlockedfile.h             |  60 ----
- qtsingleapplication/src/qtlockedfile_unix.cpp      |  78 ----
- qtsingleapplication/src/qtlockedfile_win.cpp       | 174 ---------
- qtsingleapplication/src/qtsingleapplication.cpp    | 310 ----------------
- qtsingleapplication/src/qtsingleapplication.h      |  68 ----
- qtsingleapplication/src/qtsingleapplication.pri    |  17 -
- .../src/qtsinglecoreapplication.cpp                | 112 ------
- qtsingleapplication/src/qtsinglecoreapplication.h  |  34 --
- .../src/qtsinglecoreapplication.pri                |  10 -
- third-party/qtsingleapplication/CMakeLists.txt     |  13 +
- third-party/qtsingleapplication/INSTALL.TXT        | 254 +++++++++++++
- third-party/qtsingleapplication/README.TXT         |  33 ++
- .../qtsingleapplication/buildlib/buildlib.pro      |  13 +
- third-party/qtsingleapplication/common.pri         |  14 +
- third-party/qtsingleapplication/configure          |  25 ++
- third-party/qtsingleapplication/configure.bat      |  43 +++
- .../qtsingleapplication/doc/html/classic.css       | 284 +++++++++++++++
- .../doc/html/images/qt-logo.png                    | Bin 0 -> 4075 bytes
- .../qtsingleapplication/doc/html/index.html        |  48 +++
- .../html/qtsingleapplication-example-loader.html   | 175 +++++++++
- .../html/qtsingleapplication-example-trivial.html  | 101 ++++++
- .../doc/html/qtsingleapplication-members.html      | 235 ++++++++++++
- .../doc/html/qtsingleapplication-obsolete.html     |  31 ++
- .../doc/html/qtsingleapplication.dcf               |  40 +++
- .../doc/html/qtsingleapplication.html              | 162 +++++++++
- .../doc/html/qtsingleapplication.index             |  90 +++++
- .../doc/html/qtsingleapplication.qhp               |  53 +++
- .../qtsinglecoreapplication-example-console.html   | 118 +++++++
- .../doc/html/qtsinglecoreapplication-members.html  | 126 +++++++
- .../doc/html/qtsinglecoreapplication.html          |  98 ++++++
- .../qtsingleapplication/doc/images/qt-logo.png     | Bin 0 -> 4075 bytes
- third-party/qtsingleapplication/doc/index.qdoc     |  50 +++
- .../examples/console/console.pro                   |   5 +
- .../examples/console/console.qdoc                  |  28 ++
- .../qtsingleapplication/examples/console/main.cpp  |  52 +++
- .../qtsingleapplication/examples/examples.pro      |   4 +
- .../qtsingleapplication/examples/loader/file1.qsl  |   1 +
- .../qtsingleapplication/examples/loader/file2.qsl  |   1 +
- .../qtsingleapplication/examples/loader/loader.pro |   6 +
- .../examples/loader/loader.qdoc                    |  44 +++
- .../qtsingleapplication/examples/loader/main.cpp   | 115 ++++++
- .../qtsingleapplication/examples/trivial/main.cpp  |  41 +++
- .../examples/trivial/trivial.pro                   |   5 +
- .../examples/trivial/trivial.qdoc                  |  39 ++
- .../qtsingleapplication/qtsingleapplication.pro    |   5 +
- third-party/qtsingleapplication/src/QtLockedFile   |   1 +
- .../qtsingleapplication/src/QtSingleApplication    |   1 +
- .../qtsingleapplication/src/qtlocalpeer.cpp        | 177 ++++++++++
- third-party/qtsingleapplication/src/qtlocalpeer.h  |  40 +++
- .../qtsingleapplication/src/qtlockedfile.cpp       | 156 ++++++++
- third-party/qtsingleapplication/src/qtlockedfile.h |  60 ++++
- .../qtsingleapplication/src/qtlockedfile_unix.cpp  |  78 ++++
- .../qtsingleapplication/src/qtlockedfile_win.cpp   | 174 +++++++++
- .../src/qtsingleapplication.cpp                    | 310 ++++++++++++++++
- .../qtsingleapplication/src/qtsingleapplication.h  |  68 ++++
- .../src/qtsingleapplication.pri                    |  17 +
- .../src/qtsinglecoreapplication.cpp                | 112 ++++++
- .../src/qtsinglecoreapplication.h                  |  34 ++
- .../src/qtsinglecoreapplication.pri                |  10 +
- .../src/qtsingleguiapplication.cpp                 | 243 +++++++++++++
- .../src/qtsingleguiapplication.h                   |  63 ++++
- utils.cpp                                          |  46 +--
- utils.h                                            |   4 +-
- 113 files changed, 4356 insertions(+), 3938 deletions(-)
- create mode 100644 ImagePreviewArea.qml
- create mode 100644 ShadowComponent.qml
- create mode 100644 TextEditArea.qml
- delete mode 100644 qtsingleapplication/CMakeLists.txt
- delete mode 100644 qtsingleapplication/INSTALL.TXT
- delete mode 100644 qtsingleapplication/README.TXT
- delete mode 100644 qtsingleapplication/buildlib/buildlib.pro
- delete mode 100644 qtsingleapplication/common.pri
- delete mode 100755 qtsingleapplication/configure
- delete mode 100644 qtsingleapplication/configure.bat
- delete mode 100644 qtsingleapplication/doc/html/classic.css
- delete mode 100644 qtsingleapplication/doc/html/images/qt-logo.png
- delete mode 100644 qtsingleapplication/doc/html/index.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication-members.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication.dcf
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication.html
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication.index
- delete mode 100644 qtsingleapplication/doc/html/qtsingleapplication.qhp
- delete mode 100644 qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
- delete mode 100644 qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
- delete mode 100644 qtsingleapplication/doc/html/qtsinglecoreapplication.html
- delete mode 100644 qtsingleapplication/doc/images/qt-logo.png
- delete mode 100644 qtsingleapplication/doc/index.qdoc
- delete mode 100644 qtsingleapplication/examples/console/console.pro
- delete mode 100644 qtsingleapplication/examples/console/console.qdoc
- delete mode 100644 qtsingleapplication/examples/console/main.cpp
- delete mode 100644 qtsingleapplication/examples/examples.pro
- delete mode 100644 qtsingleapplication/examples/loader/file1.qsl
- delete mode 100644 qtsingleapplication/examples/loader/file2.qsl
- delete mode 100644 qtsingleapplication/examples/loader/loader.pro
- delete mode 100644 qtsingleapplication/examples/loader/loader.qdoc
- delete mode 100644 qtsingleapplication/examples/loader/main.cpp
- delete mode 100644 qtsingleapplication/examples/trivial/main.cpp
- delete mode 100644 qtsingleapplication/examples/trivial/trivial.pro
- delete mode 100644 qtsingleapplication/examples/trivial/trivial.qdoc
- delete mode 100644 qtsingleapplication/qtsingleapplication.pro
- delete mode 100644 qtsingleapplication/src/QtLockedFile
- delete mode 100644 qtsingleapplication/src/QtSingleApplication
- delete mode 100644 qtsingleapplication/src/qtlocalpeer.cpp
- delete mode 100644 qtsingleapplication/src/qtlocalpeer.h
- delete mode 100644 qtsingleapplication/src/qtlockedfile.cpp
- delete mode 100644 qtsingleapplication/src/qtlockedfile.h
- delete mode 100644 qtsingleapplication/src/qtlockedfile_unix.cpp
- delete mode 100644 qtsingleapplication/src/qtlockedfile_win.cpp
- delete mode 100644 qtsingleapplication/src/qtsingleapplication.cpp
- delete mode 100644 qtsingleapplication/src/qtsingleapplication.h
- delete mode 100644 qtsingleapplication/src/qtsingleapplication.pri
- delete mode 100644 qtsingleapplication/src/qtsinglecoreapplication.cpp
- delete mode 100644 qtsingleapplication/src/qtsinglecoreapplication.h
- delete mode 100644 qtsingleapplication/src/qtsinglecoreapplication.pri
- create mode 100644 third-party/qtsingleapplication/CMakeLists.txt
- create mode 100644 third-party/qtsingleapplication/INSTALL.TXT
- create mode 100644 third-party/qtsingleapplication/README.TXT
- create mode 100644 third-party/qtsingleapplication/buildlib/buildlib.pro
- create mode 100644 third-party/qtsingleapplication/common.pri
- create mode 100755 third-party/qtsingleapplication/configure
- create mode 100644 third-party/qtsingleapplication/configure.bat
- create mode 100644 third-party/qtsingleapplication/doc/html/classic.css
- create mode 100644 third-party/qtsingleapplication/doc/html/images/qt-logo.png
- create mode 100644 third-party/qtsingleapplication/doc/html/index.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication.index
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
- create mode 100644 third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html
- create mode 100644 third-party/qtsingleapplication/doc/images/qt-logo.png
- create mode 100644 third-party/qtsingleapplication/doc/index.qdoc
- create mode 100644 third-party/qtsingleapplication/examples/console/console.pro
- create mode 100644 third-party/qtsingleapplication/examples/console/console.qdoc
- create mode 100644 third-party/qtsingleapplication/examples/console/main.cpp
- create mode 100644 third-party/qtsingleapplication/examples/examples.pro
- create mode 100644 third-party/qtsingleapplication/examples/loader/file1.qsl
- create mode 100644 third-party/qtsingleapplication/examples/loader/file2.qsl
- create mode 100644 third-party/qtsingleapplication/examples/loader/loader.pro
- create mode 100644 third-party/qtsingleapplication/examples/loader/loader.qdoc
- create mode 100644 third-party/qtsingleapplication/examples/loader/main.cpp
- create mode 100644 third-party/qtsingleapplication/examples/trivial/main.cpp
- create mode 100644 third-party/qtsingleapplication/examples/trivial/trivial.pro
- create mode 100644 third-party/qtsingleapplication/examples/trivial/trivial.qdoc
- create mode 100644 third-party/qtsingleapplication/qtsingleapplication.pro
- create mode 100644 third-party/qtsingleapplication/src/QtLockedFile
- create mode 100644 third-party/qtsingleapplication/src/QtSingleApplication
- create mode 100644 third-party/qtsingleapplication/src/qtlocalpeer.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtlocalpeer.h
- create mode 100644 third-party/qtsingleapplication/src/qtlockedfile.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtlockedfile.h
- create mode 100644 third-party/qtsingleapplication/src/qtlockedfile_unix.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtlockedfile_win.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtsingleapplication.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtsingleapplication.h
- create mode 100644 third-party/qtsingleapplication/src/qtsingleapplication.pri
- create mode 100644 third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtsinglecoreapplication.h
- create mode 100644 third-party/qtsingleapplication/src/qtsinglecoreapplication.pri
- create mode 100644 third-party/qtsingleapplication/src/qtsingleguiapplication.cpp
- create mode 100644 third-party/qtsingleapplication/src/qtsingleguiapplication.h
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index b3f31f1..9016c9b 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -46,8 +46,8 @@ foreach(external_lib IN ITEMS ${PC_PKGS})
-         list(APPEND EXTERNAL_LIBS PkgConfig::${external_lib})
-     endif()
- endforeach()
--add_subdirectory(qtsingleapplication)
--include_directories(qtsingleapplication/src)
-+add_subdirectory(third-party/qtsingleapplication)
-+include_directories(third-party/qtsingleapplication/src)
- 
- if(ANDROID)
-     add_library(ukui-clipboard SHARED
-@@ -79,7 +79,7 @@ target_link_libraries(ukui-clipboard PRIVATE
-     KF5::WindowSystem
-     KF5::CoreAddons
-     KF5::GlobalAccel
--    qtsingleapplication
-+    qtsingleguiapplication
-     Xtst
-     kylin-ai-base
-     ${X11_LIBRARIES}
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 70fd158..934111b 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -4,14 +4,23 @@ import QtQuick.Window 2.15
- import QtQuick.Controls 2.15
- import QtQuick.Layouts 1.15
- import org.ukui.quick.items 1.0 as UkuiItems
--import TitleLessWindow 1.0 as MyWd
- import ContentMenu 1.0
- 
--MyWd.DeactiveWindow {
-+ApplicationWindow {
-     id: clipboardWindow
-     visible: false
--    width: 568
--    height: 412
-+    property int paddings: 4
-+    property int shadowWidth: 8
-+    property int windowWidth: 568
-+    property int windowHeight: 412
-+    property int maxContentWidth: 540
-+    property int maxContentHeight: 360
-+    property int windowRadius: 18
-+    width: windowWidth + shadowWidth * 2
-+    height: windowHeight + shadowWidth * 2
-+    // 设置Tool属性可以让窗口不显示到任务栏和多任务视图
-+    // 但是只在X11环境下生效
-+    flags: Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint | Qt.Tool
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
-     onVisibleChanged: {
-@@ -22,17 +31,26 @@ MyWd.DeactiveWindow {
-         }
-     }
- 
-+    // 阴影区域
-+    ShadowComponent {
-+        id: shadowArea
-+        visible: true
-+        anchors.fill: parent
-+        radius: windowRadius
-+        shadowWidth: shadowWidth
-+    }
- 
-     Rectangle {
-         id: menuBack
-+        width: windowWidth
-+        height: windowHeight
-         anchors.centerIn: parent
--        width: clipboardWindow.width
--        height: clipboardWindow.height
--        color: Qt.rgba(255, 255, 255, 1)
-+        color: Qt.rgba(255, 255, 255, 0.95)
-+        radius: windowRadius
-         clip : true
--
--        property int nowCurrentType: backend.displayedType
--        property string restoreIconName: nowCurrentType === ContentType.Image ? "image-x-generic-symbolic" : "ukui-idtext-symbolic"
-+        property int lastDisplayedType: -1
-+        property string restoreIconName: backend.displayedType === ContentType.Image ?
-+                                             "image-x-generic-symbolic" : "ukui-idtext-symbolic"
- 
-         Row {
-             id: topLine
-@@ -59,32 +77,33 @@ MyWd.DeactiveWindow {
-                     mode: UkuiItems.Icon.ForceHighlight
-                     source: backend.getIcon(menuBack.restoreIconName);
-                 }
-+
-+                ToolTip {
-+                    text: "点击取消格式转换"
-+                    visible: restoreBtnArea.containsMouse && backend.originalType != backend.displayedType
-+                }
-+
-                 MouseArea {
-                     id: restoreBtnArea
-                     anchors.fill: parent
-                     hoverEnabled: true
--
-                     onEntered: {
-                         restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 1)
-                     }
--
-                     onExited: {
-                         restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 0.8)
-                     }
--
-                     onClicked: {
--                        var currentType = backend.originalType
--                        if (currentType === menuBack.nowCurrentType){
-+                        var originalType = backend.originalType
-+                        if (originalType === backend.displayedType){
-+                            stack.switchToSpecifiedPage(menuBack.lastDisplayedType)
-+                            backend.setDisplayedType(menuBack.lastDisplayedType)
-                             return
-                         }
--                        menuBack.nowCurrentType = currentType;
--                        if (currentType === ContentType.PlainText) {
--                            stack.replace(stack.currentItem, plainTextComponent.createObject())
--                        } else if (currentType === ContentType.RichText) {
--                            stack.replace(stack.currentItem, richTextComponent.createObject())
--                        } else if (currentType === ContentType.Image){
--                            stack.replace(stack.currentItem, imageComponent.createObject())
--                        }
-+
-+                        menuBack.lastDisplayedType = backend.displayedType
-+                        backend.setDisplayedType(originalType)
-+                        stack.switchToSpecifiedPage(originalType)
-                     }
-                 }
-             }
-@@ -105,64 +124,113 @@ MyWd.DeactiveWindow {
-                     rotation: buttonMenu.visible ? 180 : 0
-                 }
- 
-+                ToolTip {
-+                    text: "更多转换选项"
-+                    visible: moreOptionArea.containsMouse && !buttonMenu.visible
-+                }
-+
-                 MouseArea {
-+                    id: moreOptionArea
-                     anchors.fill: parent
--                    onClicked: {
--                        buttonMenu.open()
-+                    hoverEnabled: true
-+                    property bool menuVisible: false
-+                    onPressed: {
-+                        if (!menuVisible) {
-+                            buttonMenu.open()
-+                            menuVisible = true
-+                        } else {
-+                            menuVisible = false
-+                        }
-                     }
-                 }
-+            }
-+        }
- 
--                // 关联菜单
--                Menu {
--                    id: buttonMenu
--                    width: 120
--                    y: 42
--                    Repeater {
--                        id: control
--                        model: backend.contentMenus
--                        delegate: MenuItem {
--                            text: modelData.itemName
--                            onTriggered: {
--                                var currentType = backend.contentMenus[index].contentType
--                                if (currentType === menuBack.nowCurrentType){
--                                    return
--                                }
-+        Rectangle {
-+            id: menuBackground
-+            anchors.right: parent.right
-+            anchors.top: topLine.bottom
-+            width: 120 + paddings * 2
-+            height: buttonMenu.height + paddings * 2
-+            visible: buttonMenu.visible
-+            color: "transparent"
-+            // 阴影区域
-+            ShadowComponent {
-+                visible: true
-+                anchors.fill: parent
-+                radius: paddings * 2
-+                shadowWidth: paddings
-+            }
- 
--                                menuBack.nowCurrentType = currentType;
--                                if (currentType === ContentType.PlainText) {
--                                    stack.replace(stack.currentItem, plainTextComponent.createObject())
--                                } else if (currentType === ContentType.RichText) {
--                                    stack.replace(stack.currentItem, richTextComponent.createObject())
--                                } else if (currentType === ContentType.Image){
--                                    stack.replace(stack.currentItem, imageComponent.createObject())
--                                }
-+            // 关联菜单
-+            Menu {
-+                id: buttonMenu
-+                width: 120
-+                anchors.centerIn: menuBackground
-+                background: Rectangle {
-+                    anchors.fill: parent
-+                    radius: paddings * 2
-+                    color: "white"
-+                }
-+                Repeater {
-+                    id: control
-+                    model: backend.contentMenus
-+                    delegate: MenuItem {
-+                        id: menuItem
-+                        text: modelData.itemName
-+                        contentItem: Label {
-+                            text: menuItem.text
-+                            font: menuItem.font
-+                            verticalAlignment: Text.AlignVCenter
-+                            leftPadding: paddings * 2
-+                        }
-+                        highlighted: buttonMenu.currentIndex === index
-+                        background: Rectangle {
-+                            anchors.fill: menuItem
-+                            color: "transparent"
-+                            radius: paddings
-+                            Rectangle {
-+                                width: parent.width - paddings * 2
-+                                height: parent.height - paddings * 2
-+                                radius: paddings
-+                                anchors.centerIn: parent
-+                                color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
-                             }
-                         }
--                    }
-+                        MouseArea {
-+                            anchors.fill: parent
-+                            hoverEnabled: true
-+                            onEntered: buttonMenu.currentIndex = index
-+                            onExited: buttonMenu.currentIndex = -1
-+                            onClicked: menuItem.triggered()
-+                        }
-+                        onTriggered: {
-+                            var currentType = backend.contentMenus[index].contentType
-+                            if (currentType === backend.displayedType){
-+                                return
-+                            }
- 
--                    function removeItem() {
--                        for (var i = 0; i < control.model.length; i++) {
--                             if(control.model[i].contentType === ContentType.Original) {
--                                 backend.removeContentMenu(i); // 删除项
--                                 break; // 只删除第一个匹配的项
--                             }
-+                            backend.setDisplayedType(currentType)
-+                            stack.switchToSpecifiedPage(currentType)
-                         }
-                     }
-+                }
- 
--                    Component.onCompleted: {
--                        removeItem();
--                        var type = backend.displayedType
--                        if (type === ContentType.PlainText) {
--                            stack.replace(stack.currentItem, plainTextComponent.createObject())
--                        } else if (type === ContentType.RichText) {
--                            stack.replace(stack.currentItem, richTextComponent.createObject())
--                        } else if (type === ContentType.Image){
--                            stack.replace(stack.currentItem, imageComponent.createObject())
--                        }
-+                function removeItem() {
-+                    for (var i = 0; i < control.model.length; i++) {
-+                         if(control.model[i].contentType === ContentType.Original) {
-+                             backend.removeContentMenu(i); // 删除项
-+                             break; // 只删除第一个匹配的项
-+                         }
-                     }
-                 }
--            }
- 
-+                Component.onCompleted: {
-+                    removeItem();
-+                    var currentType = backend.displayedType
-+                    stack.switchToSpecifiedPage(currentType)
-+                }
-+            }
-         }
- 
-         StackView {
-@@ -173,6 +241,17 @@ MyWd.DeactiveWindow {
-             anchors.bottom: buttomLine.top
-             anchors.left: parent.left
-             anchors.right: parent.right
-+
-+            function switchToSpecifiedPage(currentType)
-+            {
-+                if (currentType === ContentType.PlainText) {
-+                    replace(currentItem, plainTextComponent.createObject())
-+                } else if (currentType === ContentType.RichText) {
-+                    replace(currentItem, richTextComponent.createObject())
-+                } else if (currentType === ContentType.Image){
-+                    replace(currentItem, imageComponent.createObject())
-+                }
-+            }
-         }
- 
-         Row {
-@@ -195,6 +274,12 @@ MyWd.DeactiveWindow {
-                     verticalAlignment: Text.AlignVCenter
-                     horizontalAlignment: Text.AlignHCenter
-                 }
-+
-+                ToolTip {
-+                    text: "取消"
-+                    visible: cancelArea.containsMouse
-+                }
-+
-                 background: Rectangle {
-                     width: cancelButton.width-4
-                     height: cancelButton.height-4
-@@ -209,7 +294,9 @@ MyWd.DeactiveWindow {
-                 }
- 
-                 MouseArea {
-+                    id: cancelArea
-                     anchors.fill: parent
-+                    hoverEnabled: true
-                     onClicked: {
-                         clipboardWindow.visible = false
-                     }
-@@ -228,6 +315,12 @@ MyWd.DeactiveWindow {
-                     verticalAlignment: Text.AlignVCenter
-                     horizontalAlignment: Text.AlignHCenter
-                 }
-+
-+                ToolTip {
-+                    text: "确认粘贴"
-+                    visible: confirmArea.containsMouse
-+                }
-+
-                 background: Rectangle {
-                     width: pasteButton.width-4
-                     height: pasteButton.height-4
-@@ -242,9 +335,11 @@ MyWd.DeactiveWindow {
-                 }
- 
-                 MouseArea {
-+                    id: confirmArea
-                     anchors.fill: parent
-+                    hoverEnabled: true
-                     onClicked: {
--                        var currentType = menuBack.nowCurrentType
-+                        var currentType = backend.displayedType
-                         // 使用TextEdit自带的函数将文本拷贝到剪切板
-                         if (currentType === ContentType.Image) {
-                             backend.copyToClipboard(currentType)
-@@ -260,168 +355,27 @@ MyWd.DeactiveWindow {
- 
-         Component {
-             id: richTextComponent // 富文本项的Component
--            Rectangle {
--                color: Qt.rgba(255, 255, 255, 0.75)
--
--                // TODO: 将Flickable和TextEdit封装为一个控件
--                Flickable {
--                    id: richFlick
--                    anchors.fill: parent
--                    contentWidth: richTextEdit.paintedWidth
--                    contentHeight: richTextEdit.paintedHeight
--                    clip: true
--                    ScrollBar.vertical: ScrollBar {
--                        visible: richFlick.contentHeight > richFlick.height
--                    }
--                    ScrollBar.horizontal: ScrollBar{
--                        visible: richFlick.contentWidth > richFlick.width
--                    }
--
--                    TextEdit {
--                        id: richTextEdit
--                        focus: true
--                        selectByMouse: true
--                        wrapMode: TextEdit.Wrap
--                        persistentSelection: true
--                        text: ""
--                        textFormat: Qt.RichText
--                        leftPadding: 8
--                        onCursorRectangleChanged: {
--                            richFlick.ensureVisible(cursorRectangle)
--                        }
--                        Component.onCompleted: {
--                            this.clear()
--                            this.paste()
--                            richFlick.contentY = 0;
--                        }
--                    }
--
--                    function ensureVisible(r) {
--                        if (contentX >= r.x)
--                            contentX = r.x;
--                        else if (contentX + width <= r.x + r.width)
--                            contentX = r.x + r.width - width;
--                        if (contentY >= r.y)
--                            contentY = r.y;
--                        else if (contentY + height <= r.y + r.height)
--                            contentY = r.y + r.height - height;
--                    }
--                }
--
--                function copyToClipboard() {
--                    richTextEdit.selectAll()
--                    richTextEdit.copy()
--                }
-+            TextEditArea {
-+                visibleWidth: maxContentWidth
-+                visibleHeight: maxContentHeight
-+                textFormat: Qt.RichText
-             }
-         }
- 
-         Component {
-             id: imageComponent // 图片项的Component
--            ScrollView {
--                id: scrollView
--                clip: true
--                ScrollBar.horizontal.policy: scrollView.width < scrollView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
--                ScrollBar.vertical.policy: scrollView.height < scrollView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
--                property int columns: backend.imageNumber() > 3 ? 4 : backend.imageNumber()
--
--                function getImageSize()
--                {
--                    var max_height = 330
--                    var max_width = 544
--                    var imageWidth = backend.imageSize.width
--                    var imageHeight = backend.imageSize.height
--                    var thumbHeight = max_height
--                    var thumbWidth = Math.floor(max_height * imageWidth / imageHeight)
--                    if (thumbWidth > max_width) {
--                        thumbWidth = max_width
--                        thumbHeight = Math.floor(max_width * imageHeight / imageWidth)
--                    }
--                    return Qt.size(thumbWidth, thumbHeight)
--                }
--
--                GridLayout {
--                    columns: scrollView.columns
--                    rowSpacing: 10
--                    columnSpacing: 10
--
--                    Repeater {
--                        id: imageRepeater
--                        model: backend.imageNumber()
--
--                        delegate: Rectangle {
--                            width: scrollView.width
--                            height: scrollView.height
--                            color: "transparent"
--                            Image {
--                                id: screenshot
--                                cache: false
--                                anchors.centerIn: parent
--                                sourceSize: scrollView.getImageSize()
--                                fillMode: Image.PreserveAspectFit
--                                source: "image://inMemoryImages/Image"+index
--                            }
--                        }
--                    }
--                }
-+            ImagePreviewArea {
-+                visibleWidth: maxContentWidth
-+                visibleHeight: maxContentHeight
-             }
-         }
- 
-         Component {
-             id: plainTextComponent // 纯文本项的Component
--            Rectangle {
--                color: Qt.rgba(255, 255, 255, 0.75)
--
--                Flickable {
--                    id: plainFlick
--                    anchors.fill: parent
--                    contentWidth: plainTextEdit.paintedWidth
--                    contentHeight: plainTextEdit.paintedHeight
--                    clip: true
--                    ScrollBar.vertical: ScrollBar {
--                        visible: plainFlick.contentHeight > plainFlick.height
--                    }
--                    ScrollBar.horizontal: ScrollBar{
--                        visible: plainFlick.contentWidth > plainFlick.width
--                    }
--
--                    TextEdit {
--                        id: plainTextEdit
--                        focus: true
--                        selectByMouse: true
--                        wrapMode: TextEdit.Wrap
--                        text: ""
--                        leftPadding: 8
--                        onCursorRectangleChanged: {
--                            plainFlick.ensureVisible(cursorRectangle)
--                        }
--                        Component.onCompleted: {
--                            // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
--                            if (backend.originalType === ContentType.Image) {
--                                text = backend.plainText
--                            } else {
--                                this.clear()
--                                this.paste()
--                            }
--                            plainFlick.contentY = 0
--                        }
--                    }
--
--                    function ensureVisible(r) {
--                        if (contentX >= r.x)
--                            contentX = r.x;
--                        else if (contentX + width <= r.x + r.width)
--                            contentX = r.x + r.width - width;
--                        if (contentY >= r.y)
--                            contentY = r.y;
--                        else if (contentY + height <= r.y + r.height)
--                            contentY = r.y + r.height - height;
--                    }
--                }
--
--                function copyToClipboard() {
--                    plainTextEdit.selectAll()
--                    plainTextEdit.copy()
--                }
-+            TextEditArea {
-+                visibleWidth: maxContentWidth
-+                visibleHeight: maxContentHeight
-+                textFormat: Qt.PlainText
-             }
-         }
-     }
-diff --git a/ImagePreviewArea.qml b/ImagePreviewArea.qml
-new file mode 100644
-index 0000000..658ca00
---- /dev/null
-+++ b/ImagePreviewArea.qml
-@@ -0,0 +1,57 @@
-+import QtQuick 2.15
-+import QtQuick.Controls 2.15
-+import QtQuick.Layouts 1.15
-+import ContentMenu 1.0
-+
-+Item {
-+    id: root
-+    property int visibleWidth: 0
-+    property int visibleHeight: 0
-+    ScrollView {
-+        id: scrollView
-+        width: parent.visibleWidth
-+        height: parent.visibleHeight
-+        anchors.horizontalCenter: parent.horizontalCenter
-+        clip: true
-+        ScrollBar.horizontal.policy: scrollView.width < scrollView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-+        ScrollBar.vertical.policy: scrollView.height < scrollView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-+        property int columns: backend.imageNumber() > 3 ? 4 : backend.imageNumber()
-+
-+        GridLayout {
-+            columns: scrollView.columns
-+            rowSpacing: 10
-+            columnSpacing: 10
-+
-+            Repeater {
-+                id: imageRepeater
-+                model: backend.imageNumber()
-+
-+                delegate: Rectangle {
-+                    width: scrollView.width
-+                    height: scrollView.height
-+                    color: "transparent"
-+
-+                    ScrollView {
-+                        id: imageView
-+                        width: parent.width
-+                        height: parent.height
-+                        contentWidth: screenshot.paintedWidth
-+                        contentHeight: screenshot.paintedHeight
-+                        clip: true
-+                        ScrollBar.horizontal.policy: imageView.width < imageView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-+                        ScrollBar.vertical.policy: imageView.height < imageView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-+
-+                        Image {
-+                            id: screenshot
-+                            x: root.width > paintedWidth ? Math.round((root.width - paintedWidth) / 2) : 0
-+                            y: root.height > paintedHeight ? Math.round((root.height - paintedHeight) / 2) : 0
-+                            cache: false
-+                            fillMode: Image.PreserveAspectFit
-+                            source: "image://inMemoryImages/Image" + index
-+                        }
-+                    }
-+                }
-+            }
-+        }
-+    }
-+}
-diff --git a/ShadowComponent.qml b/ShadowComponent.qml
-new file mode 100644
-index 0000000..d108724
---- /dev/null
-+++ b/ShadowComponent.qml
-@@ -0,0 +1,58 @@
-+/*
-+ * Copyright (C) 2022, KylinSoft Co., Ltd.
-+ *
-+ * This program is free software: you can redistribute it and/or modify
-+ * it under the terms of the GNU General Public License as published by
-+ * the Free Software Foundation, either version 3 of the License, or
-+ * (at your option) any later version.
-+ *
-+ * This program is distributed in the hope that it will be useful,
-+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
-+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+ * GNU General Public License for more details.
-+ *
-+ * You should have received a copy of the GNU General Public License
-+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
-+ *
-+ */
-+
-+import QtQuick 2.0
-+import QtGraphicalEffects 1.12
-+
-+import org.ukui.quick.items 1.0 as UkuiItems
-+import org.ukui.quick.platform 1.0 as Platform
-+
-+// 阴影
-+Item {
-+    id: root
-+
-+    property int radius: 8
-+    property int shadowWidth: 8
-+
-+    layer.enabled: true;
-+    layer.effect: OpacityMask {
-+        maskSource: Rectangle {
-+            width: root.width
-+            height: root.height
-+            radius: root.shadowWidth + root.radius
-+            color: "transparent"
-+            border.width: root.shadowWidth
-+            border.color: "white"
-+        }
-+    }
-+
-+    Rectangle {
-+        x: parent.shadowWidth
-+        y: parent.shadowWidth
-+        width: parent.width - parent.shadowWidth * 2
-+        height: parent.height - parent.shadowWidth * 2
-+        radius: parent.radius
-+
-+        layer.enabled: true
-+        layer.effect: DropShadow {
-+            radius: 12
-+            samples: 25
-+            color: Platform.Theme.color(Platform.Theme.Shadow, Platform.Theme.Active, 0.16)
-+        }
-+    }
-+}
-diff --git a/TextEditArea.qml b/TextEditArea.qml
-new file mode 100644
-index 0000000..c2d74c8
---- /dev/null
-+++ b/TextEditArea.qml
-@@ -0,0 +1,70 @@
-+import QtQuick 2.15
-+import QtQuick.Controls 2.15
-+import ContentMenu 1.0
-+
-+Item {
-+    id: root
-+    property int visibleWidth: 0
-+    property int visibleHeight: 0
-+    property int textFormat: Qt.RichText
-+    Rectangle {
-+        width: parent.visibleWidth
-+        height: parent.visibleHeight
-+        anchors.horizontalCenter: parent.horizontalCenter
-+        color: "transparent"
-+
-+        Flickable {
-+            id: flick
-+            anchors.fill: parent
-+            contentWidth: textEdit.paintedWidth
-+            contentHeight: textEdit.paintedHeight
-+            clip: true
-+            ScrollBar.vertical: ScrollBar {
-+                active: true
-+                visible: flick.contentHeight > flick.height
-+            }
-+            ScrollBar.horizontal: ScrollBar{
-+                active: true
-+                visible: flick.contentWidth > flick.width
-+            }
-+
-+            TextEdit {
-+                id: textEdit
-+                focus: true
-+                selectByMouse: true
-+                wrapMode: TextEdit.Wrap
-+                text: ""
-+                textFormat: root.textFormat
-+                onCursorRectangleChanged: {
-+                    flick.ensureVisible(cursorRectangle)
-+                }
-+                Component.onCompleted: {
-+                    // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
-+                    if (backend.originalType === ContentType.Image && backend.displayedType === ContentType.PlainText) {
-+                        text = backend.plainText
-+                    } else {
-+                        this.clear()
-+                        this.paste()
-+                    }
-+                    flick.contentY = 0
-+                }
-+            }
-+
-+            function ensureVisible(r) {
-+                if (contentX >= r.x)
-+                    contentX = r.x;
-+                else if (contentX + width <= r.x + r.width)
-+                    contentX = r.x + r.width - width;
-+                if (contentY >= r.y)
-+                    contentY = r.y;
-+                else if (contentY + height <= r.y + r.height)
-+                    contentY = r.y + r.height - height;
-+            }
-+        }
-+    }
-+
-+    function copyToClipboard() {
-+        textEdit.selectAll()
-+        textEdit.copy()
-+    }
-+}
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index c5177ca..8544047 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -91,6 +91,7 @@ void ClipboardBackend::addImage(const QImage &image)
- {
-     if (m_imageProvider) {
-         m_imageProvider->addImage(image);
-+        setImageSize(image.size());
-     }
- }
- 
-@@ -119,35 +120,31 @@ bool ClipboardBackend::processClipboardData()
-             return false;
-         }
-         this->addImage(image);
--        setImageSize(image.size());
-         this->m_plainText = convertImageToPlainText(image);
-         setOriginalType(ContentMenu::Image);
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "识别为文本"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-     } else if (mimeData->hasHtml()) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
--        this->addImage(convertRichTextToImage(this->m_richText, QSize(450, 246)));
--        setImageSize(QSize(450, 246));
--        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为图片"));
-+        this->addImage(convertRichTextToImage(this->m_richText));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为截图"));
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-     } else if (mimeData->hasImage()) {
-         QImage image = qvariant_cast<QImage>(mimeData->imageData());
-         this->addImage(image);
--        setImageSize(image.size());
-         this->m_plainText = convertImageToPlainText(image);
-         qDebug()<<"图转文"<<m_plainText;
-         setOriginalType(ContentMenu::Image);
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "识别为文本"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-     } else {
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::PlainText);
--        this->addImage(convertPlainTextToImage(this->m_plainText, QSize(450, 246)));
--        setImageSize(QSize(450, 246));
--        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为图片"));
-+        this->addImage(convertPlainTextToImage(this->m_plainText));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为截图"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-     }
-     return true;
-diff --git a/main.cpp b/main.cpp
-index 6c8f666..db00ce4 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -5,14 +5,14 @@
- #include <QCommandLineOption>
- #include <QCommandLineParser>
- 
--#include "qtsingleapplication.h"
-+#include "qtsingleguiapplication.h"
- #include "clipboardbackend.h"
- int main(int argc, char *argv[])
- {
- 
-     QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
- 
--    QtSingleApplication app(argc, argv);
-+    QtSingleGuiApplication app(argc, argv);
-     QCommandLineParser parser;
-     QCommandLineOption showWorkSpaceOption("show-menu","show contentMenu");
-     parser.addOption(showWorkSpaceOption);
-@@ -20,7 +20,7 @@ int main(int argc, char *argv[])
-     if (app.isRunning())
-     {
-         if (parser.isSet("show-menu")) {
--            app.sendMessage(QApplication::arguments().length() > 1 ? QApplication::arguments().at(1) : app.applicationFilePath());
-+            app.sendMessage(QGuiApplication::arguments().length() > 1 ? QGuiApplication::arguments().at(1) : app.applicationFilePath());
-         }
-         return EXIT_SUCCESS;
-     }
-@@ -31,7 +31,7 @@ int main(int argc, char *argv[])
-         "Not be instantiated in QML, we should only pass the enum types to QML "
-         "!");
-     ClipboardBackend backend;
--    QObject::connect(&app, &QtSingleApplication::messageReceived, [&backend](){
-+    QObject::connect(&app, &QtSingleGuiApplication::messageReceived, [&backend](){
-         backend.open();
-     });
- 
-diff --git a/main.qml b/main.qml
-index 4c2418e..77a3c86 100644
---- a/main.qml
-+++ b/main.qml
-@@ -1,101 +1,94 @@
- import QtQuick 2.15
--import QtGraphicalEffects 1.0
- import QtQuick.Window 2.15
- import QtQuick.Controls 2.15
--import QtQuick.Layouts 1.15
--import TitleLessWindow 1.0 as MyWd
-+import TitleLessWindow 1.0 as TLWindow
- import ContentMenu 1.0
- 
--MyWd.DeactiveWindow {
-+TLWindow.DeactiveWindow {
-     id: contentWindow
--    visible: false
-     width: 140
--    height: content.height + 12
-+    height: optionMenu.contentHeight
-     title: qsTr("Content Window")
--    property bool shouldVisible: false
-+    property int paddings: 4
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
- 
--    Rectangle {
--        id: menuBack
-+    onVisibleChanged: {
-+        if (visible) {
-+            var pos = backend.getGlobalMousePosition()
-+            x = pos.x + 2
-+            y = pos.y + 2
-+            optionMenu.visible = true
-+        }
-+    }
-+    onWindowDeactivated: {
-+        visible = false
-+        optionMenu.currentIndex = -1
-+    }
-+
-+    Menu {
-+        id: optionMenu
-         anchors.centerIn: parent
--        width: contentWindow.width
--        height: contentWindow.height
--        color: "white"
--        clip : true
--        ListView {
--            id: content
--            x: 4
--            y: 6
--            width: content.contentWidth
--            height: content.contentHeight
-+        width: parent.width
-+        visible: true
-+        currentIndex: -1
-+        onVisibleChanged: {
-+            if (!visible) {
-+                contentWindow.visible = false
-+                currentIndex = -1
-+            }
-+        }
-+
-+        Repeater {
-+            id: control
-             model: backend.contentMenus
--            delegate: Label {
--                id: contentButton
--                Text {
--                    text: modelData.itemName
--                    anchors.fill: parent
--                    leftPadding: 20  // 设置文本缩进
--                    elide: Text.ElideRight
--                    textFormat: Text.RichText
-+            delegate: MenuItem {
-+                id: menuItem
-+                text: modelData.itemName
-+                highlighted: optionMenu.currentIndex === index
-+                contentItem: Label {
-+                    text: menuItem.text
-+                    font: menuItem.font
-                     verticalAlignment: Text.AlignVCenter
-+                    leftPadding: paddings * 2
-                 }
-                 background: Rectangle {
--                    id: buttonBackground
--                    anchors.fill: parent
--                    color: Qt.rgba(255, 255, 255, 1)
--                    radius: 4
-+                    anchors.fill: menuItem
-+                    color: "white"
-+                    Rectangle {
-+                        width: parent.width - paddings * 2
-+                        height: parent.height - paddings * 2
-+                        radius: paddings
-+                        anchors.centerIn: parent
-+                        color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
-+                    }
-+                }
-+                onTriggered: {
-+                    contentWindow.visible = false
-+                    optionMenu.currentIndex = -1
-+                    var currentType =  backend.contentMenus[index].contentType
-+                    if (currentType === ContentType.Original) {
-+                        // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
-+                        if (backend.originalType === ContentType.Image) {
-+                            backend.copyToClipboard(ContentType.Image)
-+                        }
-+                        backend.performPasteOperation()
-+                    } else {
-+                        backend.setDisplayedType(currentType)
-+                        clipboardComponent.createObject()
-+                    }
-                 }
--                height: 32
--                width: 132
-                 MouseArea {
-                     anchors.fill: parent
-                     hoverEnabled: true
--
--                    onEntered: {
--                        buttonBackground.color =  Qt.rgba(0, 0, 0, 0.05)
--                    }
--
--                    onExited: {
--                        buttonBackground.color =  Qt.rgba(0, 0, 0, 0)
--                    }
--
--                    onClicked: {
--                        contentWindow.visible = false
--                        var currentType =  backend.contentMenus[index].contentType
--                        if (currentType === ContentType.Original) {
--                            // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
--                            if (backend.originalType === ContentType.Image) {
--                                backend.copyToClipboard(ContentType.Image)
--                            }
--                            backend.performPasteOperation()
--                        } else {
--                            backend.setDisplayedType(currentType)
--                            clipboardComponent.createObject()
--                        }
--
--                    }
-+                    onEntered: optionMenu.currentIndex = index
-+                    onExited: optionMenu.currentIndex = -1
-+                    onClicked: menuItem.triggered()
-                 }
-             }
--
--            onContentHeightChanged: {
--                contentWindow.height = content.contentHeight + 16
--            }
-         }
--
-     }
- 
--    Connections {
--        target: contentWindow
--        function onWindowDeactivated() {
--            console.log("contentWindow deactivated!")
--
--            // 在这里处理窗口失活逻辑
--            if (contentWindow.visible) {
--                contentWindow.visible = false
--            }
--        }
--    }
-     Connections {
-         target: backend
-         function onContentMenuVisibleChanged(visible) {
-@@ -103,14 +96,6 @@ MyWd.DeactiveWindow {
-         }
-     }
- 
--    onVisibleChanged: {
--        if (visible) {
--            var pos = backend.getGlobalMousePosition()
--            contentWindow.x = pos.x
--            contentWindow.y = pos.y
--        }
--    }
--
-     Component {
-         id: clipboardComponent
-         ClipboardWindow {
-diff --git a/qml.qrc b/qml.qrc
-index 64b6e85..7043075 100644
---- a/qml.qrc
-+++ b/qml.qrc
-@@ -2,5 +2,8 @@
-     <qresource prefix="/">
-         <file>main.qml</file>
-         <file>ClipboardWindow.qml</file>
-+        <file>TextEditArea.qml</file>
-+        <file>ShadowComponent.qml</file>
-+        <file>ImagePreviewArea.qml</file>
-     </qresource>
- </RCC>
-diff --git a/qtsingleapplication/CMakeLists.txt b/qtsingleapplication/CMakeLists.txt
-deleted file mode 100644
-index 784cb47..0000000
---- a/qtsingleapplication/CMakeLists.txt
-+++ /dev/null
-@@ -1,13 +0,0 @@
--cmake_minimum_required(VERSION 3.16)
--project(qtsingleapplication)
--
--find_package(Qt5 COMPONENTS
--        Core Gui Widgets Network
--        REQUIRED)
--
--include_directories(src)
--set(SRCS src/qtsingleapplication.h src/qtsingleapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
--
--add_library(${PROJECT_NAME} STATIC ${SRCS})
--target_include_directories(${PROJECT_NAME} PRIVATE src)
--target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network)
-diff --git a/qtsingleapplication/INSTALL.TXT b/qtsingleapplication/INSTALL.TXT
-deleted file mode 100644
-index bbb74a9..0000000
---- a/qtsingleapplication/INSTALL.TXT
-+++ /dev/null
-@@ -1,254 +0,0 @@
--INSTALLATION INSTRUCTIONS
--
--These instructions refer to the package you are installing as
--some-package.tar.gz or some-package.zip. The .zip file is intended for use
--on Windows.
--
--The directory you choose for the installation will be referred to as
--your-install-dir.
--
--Note to Qt Visual Studio Integration users: In the instructions below,
--instead of building from command line with nmake, you can use the menu
--command 'Qt->Open Solution from .pro file' on the .pro files in the
--example and plugin directories, and then build from within Visual
--Studio.
--
--Unpacking and installation
----------------------------
--
--1.  Unpacking the archive (if you have not done so already).
--
--    On Unix and Mac OS X (in a terminal window):
--
--	cd your-install-dir
--	gunzip some-package.tar.gz
--	tar xvf some-package.tar
--
--    This creates the subdirectory some-package containing the files.
--
--    On Windows:
--
--    Unpack the .zip archive by right-clicking it in explorer and
--    choosing "Extract All...". If your version of Windows does not
--    have zip support, you can use the infozip tools available
--    from www.info-zip.org.
--
--    If you are using the infozip tools (in a command prompt window):
--	cd your-install-dir
--	unzip some-package.zip
--
--2.  Configuring the package.
--
--    The configure script is called "configure" on unix/mac and
--    "configure.bat" on Windows. It should be run from a command line
--    after cd'ing to the package directory. 
--
--    You can choose whether you want to use the component by including
--    its source code directly into your project, or build the component
--    as a dynamic shared library (DLL) that is loaded into the
--    application at run-time. The latter may be preferable for
--    technical or licensing (LGPL) reasons. If you want to build a DLL,
--    run the configure script with the argument "-library". Also see
--    the note about usage below.
--
--    (Components that are Qt plugins, e.g. styles and image formats,
--    are by default built as a plugin DLL.)
--
--    The configure script will prompt you in some cases for further
--    information. Answer these questions and carefully read the license text
--    before accepting the license conditions. The package cannot be used if
--    you do not accept the license conditions.
--
--3.  Building the component and examples (when required).
--
--    If a DLL is to be built, or if you would like to build the
--    examples, next give the commands
--
--        qmake
--        make          [or nmake if your are using Microsoft Visual C++]
--
--    The example program(s) can be found in the directory called
--    "examples" or "example".
--
--    Components that are Qt plugins, e.g. styles and image formats, are
--    ready to be used as soon as they are built, so the rest of this
--    installation instruction can be skipped.
--
--4.  Building the Qt Designer plugin (optional).
--
--    Some of the widget components are provided with plugins for Qt
--    Designer. To build and install the plugin, cd into the
--    some-package/plugin directory and give the commands
--
--	qmake
--	make           [or nmake if your are using Microsoft Visual C++]
--
--    Restart Qt Designer to make it load the new widget plugin.
--
--    Note: If you are using the built-in Qt Designer from the Qt Visual
--    Studio Integration, you will need to manually copy the plugin DLL
--    file, i.e. copy
--	%QTDIR%\plugins\designer\some-component.dll 
--    to the Qt Visual Studio Integration plugin path, typically:
--	C:\Program Files\Trolltech\Qt VS Integration\plugins
--
--    Note: If you for some reason are using a Qt Designer that is built
--    in debug mode, you will need to build the plugin in debug mode
--    also. Edit the file plugin.pro in the plugin directory, changing
--    'release' to 'debug' in the CONFIG line, before running qmake.
--
--
--
--Solutions components are intended to be used directly from the package
--directory during development, so there is no 'make install' procedure.
--
--
--Using a component in your project
-----------------------------------
--
--To use this component in your project, add the following line to the
--project's .pro file (or do the equivalent in your IDE):
--
--    include(your-install-dir/some-package/src/some-package.pri)
--
--This adds the package's sources and headers to the SOURCES and HEADERS
--project variables respectively (or, if the component has been
--configured as a DLL, it adds that library to the LIBS variable), and
--updates INCLUDEPATH to contain the package's src
--directory. Additionally, the .pri file may include some dependencies
--needed by the package.
--
--To include a header file from the package in your sources, you can now
--simply use:
--
--    #include <SomeClass>
--
--or alternatively, in pre-Qt 4 style:
--
--    #include <some-class.h>
--
--Refer to the documentation to see the classes and headers this
--components provides.
--
--
--
--Install documentation (optional)
----------------------------------
--
--The HTML documentation for the package's classes is located in the
--your-install-dir/some-package/doc/html/index.html. You can open this
--file and read the documentation with any web browser.
--
--To install the documentation into Qt Assistant (for Qt version 4.4 and
--later):
--
--1.  In Assistant, open the Edit->Preferences dialog and choose the
--    Documentation tab. Click the Add... button and select the file
--       your-install-dir/some-package/doc/html/some-package.qch
--    
--For Qt versions prior to 4.4, do instead the following:
--
--1.  The directory your-install-dir/some-package/doc/html contains a
--    file called some-package.dcf. Execute the following commands in a
--    shell, command prompt or terminal window:
--
--	cd your-install-dir/some-package/doc/html/
--	assistant -addContentFile some-package.dcf
--
--The next time you start Qt Assistant, you can access the package's
--documentation.
--
--
--Removing the documentation from assistant
-------------------------------------------
--
--If you have installed the documentation into Qt Assistant, and want to uninstall it, do as follows, for Qt version 4.4 and later:
--
--1.  In Assistant, open the Edit->Preferences dialog and choose the
--    Documentation tab. In the list of Registered Documentation, select
--    the item com.nokia.qtsolutions.some-package_version, and click
--    the Remove button.
--
--For Qt versions prior to 4.4, do instead the following:
--
--1.  The directory your-install-dir/some-package/doc/html contains a
--    file called some-package.dcf. Execute the following commands in a
--    shell, command prompt or terminal window:
--
--	cd your-install-dir/some-package/doc/html/
--	assistant -removeContentFile some-package.dcf
--
--
--
--Using the component as a DLL
------------------------------
--
--1. Normal components
--
--    The shared library (DLL) is built and placed in the
--    some-package/lib directory. It is intended to be used directly
--    from there during development. When appropriate, both debug and
--    release versions are built, since the run-time linker will in some
--    cases refuse to load a debug-built DLL into a release-built
--    application or vice versa.
--
--    The following steps are taken by default to help the dynamic
--    linker to locate the DLL at run-time (during development):
--
--    Unix: The some-package.pri file will add linker instructions to
--    add the some-package/lib directory to the rpath of the
--    executable. (When distributing, or if your system does not support
--    rpath, you can copy the shared library to another place that is
--    searched by the dynamic linker, e.g. the "lib" directory of your
--    Qt installation.)
--
--    Mac: The full path to the library is hardcoded into the library
--    itself, from where it is copied into the executable at link time,
--    and ready by the dynamic linker at run-time. (When distributing,
--    you will want to edit these hardcoded paths in the same way as for
--    the Qt DLLs. Refer to the document "Deploying an Application on
--    Mac OS X" in the Qt Reference Documentation.)
--
--    Windows: the .dll file(s) are copied into the "bin" directory of
--    your Qt installation. The Qt installation will already have set up
--    that directory to be searched by the dynamic linker.
--
--
--2. Plugins
--
--    For Qt Solutions plugins (e.g. image formats), both debug and
--    release versions of the plugin are built by default when
--    appropriate, since in some cases the release Qt library will not
--    load a debug plugin, and vice versa. The plugins are automatically
--    copied into the plugins directory of your Qt installation when
--    built, so no further setup is required.
--
--    Plugins may also be built statically, i.e. as a library that will be
--    linked into your application executable, and so will not need to
--    be redistributed as a separate plugin DLL to end users. Static
--    building is required if Qt itself is built statically. To do it,
--    just add "static" to the CONFIG variable in the plugin/plugin.pro
--    file before building. Refer to the "Static Plugins" section in the
--    chapter "How to Create Qt Plugins" for explanation of how to use a
--    static plugin in your application. The source code of the example
--    program(s) will also typically contain the relevant instructions
--    as comments.
--
--
--
--Uninstalling
--------------
--
--    The following command will remove any fils that have been
--    automatically placed outside the package directory itself during
--    installation and building
--
--	make distclean [or nmake if your are using Microsoft Visual C++]
--
--    If Qt Assistant documentation or Qt Designer plugins have been
--    installed, they can be uninstalled manually, ref. above.
--
--
--Enjoy! :)
--
--- The Qt Solutions Team.
-diff --git a/qtsingleapplication/README.TXT b/qtsingleapplication/README.TXT
-deleted file mode 100644
-index 06abb09..0000000
---- a/qtsingleapplication/README.TXT
-+++ /dev/null
-@@ -1,33 +0,0 @@
--Qt Solutions Component: Single Application
--
--The QtSingleApplication component provides support for
--applications that can be only started once per user.
--
--
--
--Version history:
--
--2.0: - Version 1.3 ported to Qt 4.
--
--2.1: - Fix compilation problem on Mac.
--
--2.2: - Really fix the Mac compilation problem.
--     - Mac: fix crash due to wrong object releasing.
--     - Mac: Fix memory leak.
--
--2.3: - Windows: Force creation of internal widget to make it work
--     with Qt 4.2.
--
--2.4: - Fix the system for automatic window raising on message
--     reception. NOTE: minor API change.
--
--2.5: - Mac: Fix isRunning() to work and report correctly.
--
--2.6: - - initialize() is now obsolete, no longer necessary to call
--     it
--     - - Fixed race condition where multiple instances migth be started
--     - - QtSingleCoreApplication variant provided for non-GUI (console)
--     usage
--     - Complete reimplementation. Visible changes:
--     - LGPL release.
--
-diff --git a/qtsingleapplication/buildlib/buildlib.pro b/qtsingleapplication/buildlib/buildlib.pro
-deleted file mode 100644
-index 37dddcd..0000000
---- a/qtsingleapplication/buildlib/buildlib.pro
-+++ /dev/null
-@@ -1,13 +0,0 @@
--TEMPLATE=lib
--CONFIG += qt dll qtsingleapplication-buildlib
--mac:CONFIG += absolute_library_soname
--win32|mac:!wince*:!win32-msvc:!macx-xcode:CONFIG += debug_and_release build_all
--include(../src/qtsingleapplication.pri)
--TARGET = $$QTSINGLEAPPLICATION_LIBNAME
--DESTDIR = $$QTSINGLEAPPLICATION_LIBDIR
--win32 {
--    DLLDESTDIR = $$[QT_INSTALL_BINS]
--    QMAKE_DISTCLEAN += $$[QT_INSTALL_BINS]\\$${QTSINGLEAPPLICATION_LIBNAME}.dll
--}
--target.path = $$DESTDIR
--INSTALLS += target
-diff --git a/qtsingleapplication/common.pri b/qtsingleapplication/common.pri
-deleted file mode 100644
-index 924c57c..0000000
---- a/qtsingleapplication/common.pri
-+++ /dev/null
-@@ -1,14 +0,0 @@
--exists(config.pri):infile(config.pri, SOLUTIONS_LIBRARY, yes): CONFIG += qtsingleapplication-uselib
--
--TEMPLATE += fakelib
--greaterThan(QT_MAJOR_VERSION, 5)|\
--  if(equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 4))|\
--  if(equals(QT_MAJOR_VERSION, 5):equals(QT_MINOR_VERSION, 4):greaterThan(QT_PATCH_VERSION, 1)) {
--    QTSINGLEAPPLICATION_LIBNAME = $$qt5LibraryTarget(QtSolutions_SingleApplication-head)
--} else {
--    QTSINGLEAPPLICATION_LIBNAME = $$qtLibraryTarget(QtSolutions_SingleApplication-head)
--}
--TEMPLATE -= fakelib
--
--QTSINGLEAPPLICATION_LIBDIR = $$PWD/lib
--unix:qtsingleapplication-uselib:!qtsingleapplication-buildlib:QMAKE_RPATHDIR += $$QTSINGLEAPPLICATION_LIBDIR
-diff --git a/qtsingleapplication/configure b/qtsingleapplication/configure
-deleted file mode 100755
-index 3c4edff..0000000
---- a/qtsingleapplication/configure
-+++ /dev/null
-@@ -1,25 +0,0 @@
--#!/bin/sh
--
--if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
--    echo "Usage: $0 [-library]"
--    echo 
--    echo "-library: Build the component as a dynamic library (DLL). Default is to"
--    echo "          include the component source code directly in the application."
--    echo 
--    exit 0
--fi
--
--rm -f config.pri
--if [ "x$1" = "x-library" ]; then
--    echo "Configuring to build this component as a dynamic library."
--    echo "SOLUTIONS_LIBRARY = yes" > config.pri
--fi
--
--echo
--echo "This component is now configured."
--echo
--echo "To build the component library (if requested) and example(s),"
--echo "run qmake and your make command."
--echo
--echo "To remove or reconfigure, run make distclean."
--echo
-diff --git a/qtsingleapplication/configure.bat b/qtsingleapplication/configure.bat
-deleted file mode 100644
-index 2927549..0000000
---- a/qtsingleapplication/configure.bat
-+++ /dev/null
-@@ -1,43 +0,0 @@
--:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--:: SPDX-License-Identifier: BSD-3-Clause
--
--@echo off
--
--rem
--rem "Main"
--rem
--
--if not "%1"=="" (
--    if not "%1"=="-library" (
--        call :PrintUsage
--        goto EOF
--    )
--)
--
--if exist config.pri. del config.pri
--if "%1"=="-library" (
--    echo Configuring to build this component as a dynamic library.
--    echo SOLUTIONS_LIBRARY = yes > config.pri
--)
--
--echo .
--echo This component is now configured.
--echo .
--echo To build the component library (if requested) and example(s),
--echo run qmake and your make or nmake command.
--echo .
--echo To remove or reconfigure, run make (nmake) distclean.
--echo .
--goto EOF
--
--:PrintUsage
--echo Usage: configure.bat [-library]
--echo .
--echo -library: Build the component as a dynamic library (DLL). Default is to
--echo           include the component source directly in the application.
--echo           A DLL may be preferable for technical or licensing (LGPL) reasons.
--echo .
--goto EOF
--
--
--:EOF
-diff --git a/qtsingleapplication/doc/html/classic.css b/qtsingleapplication/doc/html/classic.css
-deleted file mode 100644
-index b8cae8e..0000000
---- a/qtsingleapplication/doc/html/classic.css
-+++ /dev/null
-@@ -1,284 +0,0 @@
--BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
--  font-family: Arial, Geneva, Helvetica, sans-serif;
--}
--H1 {
--  text-align: center;
--  font-size: 160%;
--}
--H2 {
--  font-size: 120%;
--}
--H3 {
--  font-size: 100%;
--}
--
--h3.fn,span.fn
--{
--  background-color: #eee;
--  border-width: 1px;
--  border-style: solid;
--  border-color: #ddd;
--  font-weight: bold;
--  padding: 6px 0px 6px 10px;
--  margin: 42px 0px 0px 0px;
--}
--
--hr {
--  border: 0;
--  color: #a0a0a0;
--  background-color: #ccc;
--  height: 1px;
--  width: 100%;
--  text-align: left;
--  margin: 34px 0px 34px 0px;
--}
--
--table.valuelist {
--	border-width: 1px 1px 1px 1px;
--	border-style: solid;
--	border-color: #dddddd;
--	border-collapse: collapse;
--	background-color: #f0f0f0;
--}
--
--table.indextable {
--	border-width: 1px 1px 1px 1px;
--	border-style: solid;
--	border-collapse: collapse;
--	background-color: #f0f0f0;
--    border-color:#555;
--    font-size: 100%;
--}
--
--table td.largeindex {
--	border-width: 1px 1px 1px 1px;
--	border-collapse: collapse;
--	background-color: #f0f0f0;
--    border-color:#555;
--    font-size: 120%;
--}
--
--table.valuelist th {
--	border-width: 1px 1px 1px 2px;
--	padding: 4px;
--	border-style: solid;
--	border-color: #666;
--    color:white;
--    background-color:#666;
--}
--
--th.titleheader  {
--	border-width: 1px 0px 1px 0px;
--	padding: 2px;
--	border-style: solid;
--	border-color: #666;
--    color:white;
--    background-color:#555;
--    background-image:url('images/gradient.png')};
--    background-repeat: repeat-x;
--    font-size: 100%;
--}
--
--
--th.largeheader {
--	border-width: 1px 0px 1px 0px;
--	padding: 4px;
--	border-style: solid;
--	border-color: #444;
--    color:white;
--    background-color:#555555;
--    font-size: 120%;
--}
--
--p {
--
--  margin-left: 4px;
--  margin-top: 8px;
--  margin-bottom: 8px;
--}
--
--a:link
--{
--  color: #0046ad;
--  text-decoration: none
--}
--
--a:visited
--{
--  color: #672967;
--  text-decoration: none
--}
--
--a.obsolete
--{
--  color: #661100;
--  text-decoration: none
--}
--
--a.compat
--{
--  color: #661100;
--  text-decoration: none
--}
--
--a.obsolete:visited
--{
--  color: #995500;
--  text-decoration: none
--}
--
--a.compat:visited
--{
--  color: #995500;
--  text-decoration: none
--}
--
--body
--{
--  background: #ffffff;
--  color: black
--}
--
--table.generic, table.annotated
--{
--  border-width: 1px;
--  border-color:#bbb;
--  border-style:solid;  
--  border-collapse:collapse;
--}
--
--table td.memItemLeft {
--  width: 180px;
--  padding: 2px 0px 0px 8px;
--  margin: 4px;
--  border-width: 1px;
--  border-color: #E0E0E0;
--  border-style: none;
--  font-size: 100%;
--  white-space: nowrap
--}
--
--table td.memItemRight {
--  padding: 2px 8px 0px 8px;
--  margin: 4px;
--  border-width: 1px;
--  border-color: #E0E0E0;
--  border-style: none;
--  font-size: 100%;
--}
--
--table tr.odd {
--  background: #f0f0f0;
--  color: black;
--}
--
--table tr.even {
--  background: #e4e4e4;
--  color: black;
--}
--
--table.annotated th {
--  padding: 3px;
--  text-align: left
--}
--
--table.annotated td {
--  padding: 3px;
--}
--
--table tr pre
--{
--  padding-top: 0px;
--  padding-bottom: 0px;
--  padding-left: 0px;
--  padding-right: 0px;
--  border: none;
--  background: none
--}
--
--tr.qt-style
--{
--  background: #96E066;
--  color: black
--}
--
--body pre
--{
--  padding: 0.2em;
--  border: #e7e7e7 1px solid;
--  background: #f1f1f1;
--  color: black
--}
--
--table tr.qt-code pre
--{
--  padding: 0.2em;
--  border: #e7e7e7 1px solid;
--  background: #f1f1f1;
--  color: black
--}
--
--span.preprocessor, span.preprocessor a
--{
--  color: darkblue;
--}
--
--span.comment
--{
--  color: darkred;
--  font-style: italic
--}
--
--span.string,span.char
--{
--  color: darkgreen;
--}
--
--.title
--{
--    text-align: center
--}
--
--.subtitle
--{
--    font-size: 0.8em
--}
--
--.small-subtitle
--{
--    font-size: 0.65em
--}
--
--.qmlitem {
--    padding: 0;
--}
--
--.qmlname {
--    white-space: nowrap;
--}
--
--.qmltype {
--    text-align: center;
--    font-size: 160%;
--}
--
--.qmlproto {
--    background-color: #eee;
--    border-width: 1px;
--    border-style: solid;
--    border-color: #ddd;
--    font-weight: bold;
--    padding: 6px 10px 6px 10px;
--    margin: 42px 0px 0px 0px;
--}
--
--.qmlreadonly {
--    float: right;
--    color: red
--}
--
--.qmldoc {
--}
--
--*.qmlitem p {
--}
-diff --git a/qtsingleapplication/doc/html/images/qt-logo.png b/qtsingleapplication/doc/html/images/qt-logo.png
-deleted file mode 100644
-index 794162f..0000000
---- a/qtsingleapplication/doc/html/images/qt-logo.png
-+++ /dev/null
-@@ -1,10 +0,0 @@
--�PNG
--
--���
IHDR���9���C�����:u���IDATx�b���?�������bh��������Jn�����Jn�����Jn�����Jn�����Jn�����Jn������ԡ� �Є����`�����r'Q���(
--!!����N�����b�_���������p�����?�?F&���F�����������312�������G.�y����G&ޏ?�}�e��W��S��S����gb�����(~������™������t�齸���g�0s�Vv`fcd��������������Y8��E�$�xd�U��Uex�$xd9D�����Dr=#������������gdd|���U�ף�w9D�-���
--2���b8�������������Ͽ���ebddc��eᔐ╗�S��W��S���caB�����#�������������cfd�]����-I�\_�20110`x����������z�������w�������������/�).�#'˯"ǯ*˫,�+'�)�����@lY��������@}��f��ۯ����ͼ��
--2���@d���$��1�����H������������'�)&�#'ç,ϯ*˧,�#/�%��́�X�����������gfd�����O�X8Y9��s2��G�C�3�g@
fFff.���3������O�|����v��,�l<l|ܬ���5�
!��X������š�300|�����FFF"�,HpBJ����X8�8�����������w������|�1�0����J�ơ��!�?���-� Y�;�Sf��V�^z87}D:�����"6İ��������ǟo�߾���?7+?/�������##f���?#3�����������"����Pff&&���+q�:&[����	122|�����+��o<�x##;3'"����|����?Vf66fv�,�����"ǭ���ͼ�$��)9M,,L�҃��A�CX�_�Y!���c�G�^~}������_FF�������b�,����ョ��d/�����"��������|p����-�L�������?x�����ĭ&�o����;#3+ûW�n��7�l�_�渘�������W�������"٭��3�q0^?�C�Ieb^=###333���O&�4g��?��0����K�G�̲������gfbz��������,�=���J�����"٭LL��1?��-/8Q�[���?�6᫯O���̿_�:7>�%��������?fR���_�|bb`y�엉�3+ԇ�,̌,�4� ������"ͭ��3��2>{�E4�އ��������˯N���������Ԧ�+��������Q�efd���ϛ?6:&������Ǜ�?�|��������"=\��n���$����FFfF���/�<������/.���,�le```d`b``0���{HT�O؝�W�l<!���U��9(�b�>0�����"�`dd������f���cfbb`dx��՛o� y���AP�����,�,��eebW�a�á,�����Qܬ����L�L>�<�d158�����"!\��g`bb���?�7F]u� ��?�~������?�������x�����������!�������"1\�~|���U^\���������/V�������������׏_?p@J$OG���%/Z�-���1�����O�f�����������"9
��񟁙U�_��X�������׿����.ll����������������M�o>��5���Ll�l����������1�0m���00��w��TVx��O�Ú ��b������GB��8�Gt�Uմ�Xp�l��I����������I
--� ���׶�R/���@2��Y{� ]���d9#u��l�e+�}�N6�������Xf�J�����"խ��������J�13�002³������@�K������"ŭ��z���o?�1000@{���l��Ͽ��`��?ï����2�������"��ecgd�����H�.fFf���������Ɇ��}���Ͽߌ����������"٭윌��y���0200��0�Ac�������<�\p�o�����/��.������"����?;#�ߛ�!����h�g�d����dd����\<|\��300<�|�?j��������"-��������U�������L9D�8E���
i���[ZP����?��z��5fF�6��?���o������"��b�')�~�����?3311�g���/���֯�����cz������߿��>��p��vf����L��~�g����'"������"٭���Qd�����'��i������`�����Ϳ'?�Hۅ�Ǟy�������?�200��� �%�)h��1�.�7?�����.�����"ͭ��3�2�����y�VfFfGyO���/���:�?�������LL�[�,���?/?����^}|��:`luX�-�t�N���X������"�������_Ck��Ƕ�>w��������:����7Wl�S�������ofF�cOv{����OD����7톚�����)*$���@d�����"�������7��$��1CRgɉi[���!�.f&v_#����������ɧ{='JX�X��c`a�g��պ�]R\��̅�?ӧ_�ᄏv�Ѧ��_�2��������"g|������f��ە�(�m��
)\!�&&&F������{������b�a���~>q�ci.�O?�������l���-������"s܅���Ǐ��<Ϟ���n%��h�m���)t�N���6����P��߿��0�H��~����̌,<l��	�|A�����"ӭ���+&�%���v��[7���wed����3�?D#���������gade`b��wh��I������"߭������Q�@���{���U�Rf������������/>�|�ןhm���F>���������1�:���������������19���_/ر����������cc��7k�䱞�]����ۯ������咒�Sa���������B[��?���|}kf��~�����?ɍkF�/�>9*�q�p��Q�������(
@�##ï��e���1|�QX�n���������_������	#ơ��p7���B]X?F������������[a��'���K�����+�
--�q�������/̌,,L��L�����������7t������Dʡ�z
--/�����#300��������V���nC����")"����/�?110q�p����￿�����l����_�GV�WN�OU�_UIPSCؐ���?�\e``�������=_�R(2r-d���������?ÿ_��������?+7�8��$���������$���+�:�xB��������VFn^�?����cbdd@�y��Ă������������f```ab�a�㔆L�)���J��sI�2��Ҥ!#3��������>�	�^��y^~o	�(��?+33d:���.c�f�L����(���H�*sJ`��Mg222�ڥ�����ž�����������15����,l����l�"<�<r�|*��jr�*�<
--"\�]������D�t&V�������7'���f��g����UW�@�WY�WA�K�c��)`������"�ց�	s���?���v&������"�V����g�y�������"���������J�������Jn�����Jn�����Jn�����Jn�����Jn������Qqr�{������IEND�B`�
-\ No newline at end of file
-diff --git a/qtsingleapplication/doc/html/index.html b/qtsingleapplication/doc/html/index.html
-deleted file mode 100644
-index af9dab1..0000000
---- a/qtsingleapplication/doc/html/index.html
-+++ /dev/null
-@@ -1,48 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- index.qdoc -->
--<head>
--  <title>Single Application</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">Single Application<br /><span class="subtitle"></span>
--</h1>
--<a name="description"></a>
--<h2>Description</h2>
--<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> component provides support for applications that can be only started once per user.</p>
--<p>For some applications it is useful or even critical that they are started only once by any user. Future attempts to start the application should activate any already running instance, and possibly perform requested actions, e.g&#x2e; loading a file, in that instance.</p>
--<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> class provides an interface to detect a running instance, and to send command strings to that instance. For console (non-GUI) applications, the <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> variant is provided, which avoids dependency on <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a>.</p>
--<a name="classes"></a>
--<h2>Classes</h2>
--<ul>
--<li><a href="qtsingleapplication.html">QtSingleApplication</a></li>
--<li><a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a></li>
--</ul>
--<a name="examples"></a>
--<h2>Examples</h2>
--<ul>
--<li><a href="qtsingleapplication-example-trivial.html">A Trivial Example</a></li>
--<li><a href="qtsingleapplication-example-loader.html">Loading Documents</a></li>
--<li><a href="qtsinglecoreapplication-example-console.html">A Non-GUI Example</a></li>
--</ul>
--<a name="tested-platforms"></a>
--<h2>Tested platforms</h2>
--<ul>
--<li>Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005</li>
--<li>Qt 4.4, 4.5 / Linux / gcc</li>
--<li>Qt 4.4, 4.5 / MacOS X 10.5 / gcc</li>
--</ul>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html b/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
-deleted file mode 100644
-index 6a36632..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
-+++ /dev/null
-@@ -1,175 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- loader.qdoc -->
--<head>
--  <title>Loading Documents</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">Loading Documents<br /><span class="subtitle"></span>
--</h1>
--<p>The application in this example loads or prints the documents passed as commandline parameters to further instances of this application.</p>
--<pre><span class="comment"> /****************************************************************************
-- **
-- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-- ** Contact: http://www.qt-project.org/legal
-- **
-- ** This file is part of the Qt Solutions component.
-- **
-- ** You may use this file under the terms of the BSD license as follows:
-- **
-- ** &quot;Redistribution and use in source and binary forms, with or without
-- ** modification, are permitted provided that the following conditions are
-- ** met:
-- **   * Redistributions of source code must retain the above copyright
-- **     notice, this list of conditions and the following disclaimer.
-- **   * Redistributions in binary form must reproduce the above copyright
-- **     notice, this list of conditions and the following disclaimer in
-- **     the documentation and/or other materials provided with the
-- **     distribution.
-- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-- **     the names of its contributors may be used to endorse or promote
-- **     products derived from this software without specific prior written
-- **     permission.
-- **
-- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-- **
-- ****************************************************************************/</span>
--
-- #include &lt;qtsingleapplication.h&gt;
-- #include &lt;QtCore/QFile&gt;
-- #include &lt;QtGui/QMainWindow&gt;
-- #include &lt;QtGui/QPrinter&gt;
-- #include &lt;QtGui/QPainter&gt;
-- #include &lt;QtGui/QTextEdit&gt;
-- #include &lt;QtGui/QMdiArea&gt;
-- #include &lt;QtCore/QTextStream&gt;
--
-- class MainWindow : public QMainWindow
-- {
--     Q_OBJECT
-- public:
--     MainWindow();
--
-- public slots:
--     void handleMessage(const QString&amp; message);
--
-- signals:
--     void needToShow();
--
-- private:
--     QMdiArea *workspace;
-- };</pre>
--<p>The user interface in this application is a <a href="http://qt.nokia.com/doc/4.6/qmainwindow.html">QMainWindow</a> subclass with a <a href="http://qt.nokia.com/doc/4.6/qmdiarea.html">QMdiArea</a> as the central widget. It implements a slot <tt>handleMessage()</tt> that will be connected to the messageReceived() signal of the <a href="qtsingleapplication.html">QtSingleApplication</a> class.</p>
--<pre> MainWindow::MainWindow()
-- {
--     workspace = new QMdiArea(this);
--
--     setCentralWidget(workspace);
-- }</pre>
--<p>The <a href="http://qt.nokia.com/doc/4.6/designer-to-know.html">MainWindow</a> constructor creates a minimal user interface.</p>
--<pre> void MainWindow::handleMessage(const QString&amp; message)
-- {
--     enum Action {
--         Nothing,
--         Open,
--         Print
--     } action;
--
--     action = Nothing;
--     QString filename = message;
--     if (message.toLower().startsWith(&quot;/print &quot;)) {
--         filename = filename.mid(7);
--         action = Print;
--     } else if (!message.isEmpty()) {
--         action = Open;
--     }
--     if (action == Nothing) {
--         emit needToShow();
--         return;
--     }
--
--     QFile file(filename);
--     QString contents;
--     if (file.open(QIODevice::ReadOnly))
--         contents = file.readAll();
--     else
--         contents = &quot;[[Error: Could not load file &quot; + filename + &quot;]]&quot;;
--
--     QTextEdit *view = new QTextEdit;
--     view-&gt;setPlainText(contents);
--
--     switch(action) {</pre>
--<p>The handleMessage() slot interprets the message passed in as a filename that can be prepended with <i>/print</i> to indicate that the file should just be printed rather than loaded.</p>
--<pre>     case Print:
--         {
--             QPrinter printer;
--             view-&gt;print(&amp;printer);
--             delete view;
--         }
--         break;
--
--     case Open:
--         {
--             workspace-&gt;addSubWindow(view);
--             view-&gt;setWindowTitle(message);
--             view-&gt;show();
--             emit needToShow();
--         }
--         break;
--     default:
--         break;
--     };
-- }</pre>
--<p>Loading the file will also activate the window.</p>
--<pre> #include &quot;main.moc&quot;
--
-- int main(int argc, char **argv)
-- {
--     QtSingleApplication instance(&quot;File loader QtSingleApplication example&quot;, argc, argv);
--     QString message;
--     for (int a = 1; a &lt; argc; ++a) {
--         message += argv[a];
--         if (a &lt; argc-1)
--             message += &quot; &quot;;
--     }
--
--     if (instance.sendMessage(message))
--         return 0;</pre>
--<p>The <tt>main</tt> entry point function creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object, and creates a message to send to a running instance of the application. If the message was sent successfully the process exits immediately.</p>
--<pre>     MainWindow mw;
--     mw.handleMessage(message);
--     mw.show();
--
--     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
--                      &amp;mw, SLOT(handleMessage(const QString&amp;)));
--
--     instance.setActivationWindow(&amp;mw, false);
--     QObject::connect(&amp;mw, SIGNAL(needToShow()), &amp;instance, SLOT(activateWindow()));
--
--     return instance.exec();
-- }</pre>
--<p>If the message could not be sent the application starts up. Note that <tt>false</tt> is passed to the call to setActivationWindow() to prevent automatic activation for every message received, e.g&#x2e; when the application should just print a file. Instead, the message handling function determines whether activation is requested, and signals that by emitting the needToShow() signal. This is then simply connected directly to <a href="qtsingleapplication.html">QtSingleApplication</a>'s activateWindow() slot.</p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html b/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
-deleted file mode 100644
-index 5e60cfa..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
-+++ /dev/null
-@@ -1,101 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- trivial.qdoc -->
--<head>
--  <title>A Trivial Example</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">A Trivial Example<br /><span class="subtitle"></span>
--</h1>
--<p>The application in this example has a log-view that displays messages sent by further instances of the same application.</p>
--<p>The example demonstrates the use of the <a href="qtsingleapplication.html">QtSingleApplication</a> class to detect and communicate with a running instance of the application using the sendMessage() API. The messageReceived() signal is used to display received messages in a <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a> log.</p>
--<pre><span class="comment"> /****************************************************************************
-- **
-- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-- ** Contact: http://www.qt-project.org/legal
-- **
-- ** This file is part of the Qt Solutions component.
-- **
-- ** You may use this file under the terms of the BSD license as follows:
-- **
-- ** &quot;Redistribution and use in source and binary forms, with or without
-- ** modification, are permitted provided that the following conditions are
-- ** met:
-- **   * Redistributions of source code must retain the above copyright
-- **     notice, this list of conditions and the following disclaimer.
-- **   * Redistributions in binary form must reproduce the above copyright
-- **     notice, this list of conditions and the following disclaimer in
-- **     the documentation and/or other materials provided with the
-- **     distribution.
-- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-- **     the names of its contributors may be used to endorse or promote
-- **     products derived from this software without specific prior written
-- **     permission.
-- **
-- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-- **
-- ****************************************************************************/</span>
--
-- #include &lt;qtsingleapplication.h&gt;
-- #include &lt;QtGui/QTextEdit&gt;
--
-- class TextEdit : public QTextEdit
-- {
--     Q_OBJECT
-- public:
--     TextEdit(QWidget *parent = 0)
--         : QTextEdit(parent)
--     {}
-- public slots:
--     void append(const QString &amp;str)
--     {
--         QTextEdit::append(str);
--     }
-- };
--
-- #include &quot;main.moc&quot;
--
-- int main(int argc, char **argv)
-- {
--     QtSingleApplication instance(argc, argv);</pre>
--<p>The example has only the <tt>main</tt> entry point function. A <a href="qtsingleapplication.html">QtSingleApplication</a> object is created immediately.</p>
--<pre>     if (instance.sendMessage(&quot;Wake up!&quot;))
--         return 0;</pre>
--<p>If another instance of this application is already running, sendMessage() will succeed, and this instance just exits immediately.</p>
--<pre>     TextEdit logview;
--     logview.setReadOnly(true);
--     logview.show();</pre>
--<p>Otherwise the instance continues as normal and creates the user interface.</p>
--<pre>     instance.setActivationWindow(&amp;logview);
--
--     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
--                      &amp;logview, SLOT(append(const QString&amp;)));
--
--     return instance.exec();</pre>
--<p>The <tt>logview</tt> object is also set as the application's activation window. Every time a message is received, the window will be raised and activated automatically.</p>
--<p>The messageReceived() signal is also connected to the <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a>'s append() slot. Every message received from further instances of this application will be displayed in the log.</p>
--<p>Finally the event loop is entered.</p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication-members.html b/qtsingleapplication/doc/html/qtsingleapplication-members.html
-deleted file mode 100644
-index c995ce3..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication-members.html
-+++ /dev/null
-@@ -1,235 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- qtsingleapplication.cpp -->
--<head>
--  <title>List of All Members for QtSingleApplication</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">List of All Members for QtSingleApplication</h1>
--<p>This is the complete list of members for <a href="qtsingleapplication.html">QtSingleApplication</a>, including inherited members.</p>
--<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
--<tr><td width="45%" valign="top"><ul>
--<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#ColorSpec-enum">ColorSpec</a></b></div></li>
--<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
--<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
--<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#QS60MainApplicationFactory-typedef">QS60MainApplicationFactory</a></b></div></li>
--<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a></b></div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp;, char **, bool )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp;, char **, Type )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display *, Qt::HANDLE, Qt::HANDLE )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display *, int &amp;, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display *, const QString &amp;, int, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#aboutQt">aboutQt</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const : QWidget *</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeModalWidget">activeModalWidget</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activePopupWidget">activePopupWidget</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeWindow">activeWindow</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#alert">alert</a></b> ( QWidget *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#allWidgets">allWidgets</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">autoMaximizeThreshold</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">autoSipEnabled</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#beep">beep</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#changeOverrideCursor">changeOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#clipboard">clipboard</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#closeAllWindows">closeAllWindows</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#colorSpec">colorSpec</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitData">commitData</a></b> ( QSessionManager &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitDataRequest">commitDataRequest</a></b> ( QSessionManager &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">cursorFlashTime</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktop">desktop</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktopSettingsAware">desktopSettingsAware</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">doubleClickInterval</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#event">event</a></b> ( QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusChanged">focusChanged</a></b> ( QWidget *, QWidget * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusWidget">focusWidget</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font">font</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-2">font</a></b> ( const QWidget * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-3">font</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontDatabaseChanged">fontDatabaseChanged</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontMetrics">fontMetrics</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">globalStrut</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#id">id</a></b> () const : QString</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#inputContext">inputContext</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isEffectEnabled">isEffectEnabled</a></b> ( Qt::UIEffect )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isLeftToRight">isLeftToRight</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isRightToLeft">isRightToLeft</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isSessionRestored">isSessionRestored</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputDirection">keyboardInputDirection</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">keyboardInputInterval</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputLocale">keyboardInputLocale</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardModifiers">keyboardModifiers</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keypadNavigationEnabled">keypadNavigationEnabled</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#lastWindowClosed">lastWindowClosed</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">layoutDirection</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#macEventFilter">macEventFilter</a></b> ( EventHandlerCallRef, EventRef )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#mouseButtons">mouseButtons</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#navigationMode">navigationMode</a></b> ()</div></li>
--</ul></td><td valign="top"><ul>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#overrideCursor">overrideCursor</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette">palette</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-2">palette</a></b> ( const QWidget * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-3">palette</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">quitOnLastWindowClosed</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsDecoration">qwsDecoration</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsEventFilter">qwsEventFilter</a></b> ( QWSEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetCustomColors">qwsSetCustomColors</a></b> ( QRgb *, int, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration">qwsSetDecoration</a></b> ( QDecoration * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration-2">qwsSetDecoration</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#restoreOverrideCursor">restoreOverrideCursor</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveState">saveState</a></b> ( QSessionManager &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveStateRequest">saveStateRequest</a></b> ( QSessionManager &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionId">sessionId</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionKey">sessionKey</a></b> () const</div></li>
--<li><div class="fn"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget *, bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setActiveWindow">setActiveWindow</a></b> ( QWidget * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">setAutoMaximizeThreshold</a></b> ( const int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">setAutoSipEnabled</a></b> ( const bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setColorSpec">setColorSpec</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">setCursorFlashTime</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setDesktopSettingsAware">setDesktopSettingsAware</a></b> ( bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">setDoubleClickInterval</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setEffectEnabled">setEffectEnabled</a></b> ( Qt::UIEffect, bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setFont">setFont</a></b> ( const QFont &amp;, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">setGlobalStrut</a></b> ( const QSize &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setGraphicsSystem">setGraphicsSystem</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setInputContext">setInputContext</a></b> ( QInputContext * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">setKeyboardInputInterval</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">setLayoutDirection</a></b> ( Qt::LayoutDirection )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setNavigationMode">setNavigationMode</a></b> ( Qt::NavigationMode )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setOverrideCursor">setOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setPalette">setPalette</a></b> ( const QPalette &amp;, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">setQuitOnLastWindowClosed</a></b> ( bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">setStartDragDistance</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">setStartDragTime</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle">setStyle</a></b> ( QStyle * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle-2">setStyle</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">setStyleSheet</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">setWheelScrollLines</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">setWindowIcon</a></b> ( const QIcon &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">startDragDistance</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">startDragTime</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#style">style</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">styleSheet</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianEventFilter">symbianEventFilter</a></b> ( const QSymbianEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianProcessEvent">symbianProcessEvent</a></b> ( const QSymbianEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#syncX">syncX</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt">topLevelAt</a></b> ( const QPoint &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt-2">topLevelAt</a></b> ( int, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelWidgets">topLevelWidgets</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#type">type</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">wheelScrollLines</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt">widgetAt</a></b> ( const QPoint &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt-4">widgetAt</a></b> ( int, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">windowIcon</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11EventFilter">x11EventFilter</a></b> ( XEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11ProcessEvent">x11ProcessEvent</a></b> ( XEvent * )</div></li>
--</ul>
--</td></tr>
--</table></p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html b/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
-deleted file mode 100644
-index 0d07dfa..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
-+++ /dev/null
-@@ -1,31 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- qtsingleapplication.cpp -->
--<head>
--  <title>Obsolete Members for QtSingleApplication</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">Obsolete Members for QtSingleApplication</h1>
--<p><b>The following class members are obsolete.</b> They are provided to keep old source code working. We strongly advise against using them in new code.</p>
--<p><ul><li><a href="qtsingleapplication.html">QtSingleApplication class reference</a></li></ul></p>
--<h2>Public Functions</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication-obsolete.html#initialize">initialize</a></b> ( bool <i>dummy</i> = true )&nbsp;&nbsp;<tt> (obsolete)</tt></td></tr>
--</table>
--<hr />
--<h2>Member Function Documentation</h2>
--<h3 class="fn"><a name="initialize"></a>void QtSingleApplication::initialize ( bool <i>dummy</i> = true )</h3>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication.dcf b/qtsingleapplication/doc/html/qtsingleapplication.dcf
-deleted file mode 100644
-index d81f87f..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication.dcf
-+++ /dev/null
-@@ -1,40 +0,0 @@
--<!DOCTYPE DCF>
--<DCF ref="index.html" icon="qtsingleapplication.png" imagedir="../../gif" title="Qt Solutions: Single Application Documentation">
--<section ref="classes.html" title="Classes">
--    <section ref="qtsingleapplication.html" title="QtSingleApplication Class Reference">
--        <keyword ref="qtsingleapplication.html">QtSingleApplication</keyword>
--        <keyword ref="qtsingleapplication.html#activateWindow">activateWindow</keyword>
--        <keyword ref="qtsingleapplication.html#activationWindow">activationWindow</keyword>
--        <keyword ref="qtsingleapplication.html#id">id</keyword>
--        <keyword ref="qtsingleapplication.html#isRunning">isRunning</keyword>
--        <keyword ref="qtsingleapplication.html#messageReceived">messageReceived</keyword>
--        <keyword ref="qtsingleapplication.html#sendMessage">sendMessage</keyword>
--        <keyword ref="qtsingleapplication.html#setActivationWindow">setActivationWindow</keyword>
--        <section ref="qtsingleapplication-members.html" title="List of all members"/>
--        <section ref="qtsingleapplication-obsolete.html" title="Obsolete members"/>
--    </section>
--    <section ref="qtsinglecoreapplication.html" title="QtSingleCoreApplication Class Reference">
--        <keyword ref="qtsinglecoreapplication.html">QtSingleCoreApplication</keyword>
--        <keyword ref="qtsinglecoreapplication.html#id">id</keyword>
--        <keyword ref="qtsinglecoreapplication.html#isRunning">isRunning</keyword>
--        <keyword ref="qtsinglecoreapplication.html#messageReceived">messageReceived</keyword>
--        <keyword ref="qtsinglecoreapplication.html#sendMessage">sendMessage</keyword>
--        <section ref="qtsinglecoreapplication-members.html" title="List of all members"/>
--    </section>
--</section>
--<section ref="overviews.html" title="Overviews">
--    <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example">
--        <keyword ref="qtsinglecoreapplication-example-console.html">A non-GUI example</keyword>
--    </section>
--    <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example">
--        <keyword ref="qtsingleapplication-example-trivial.html">A Trivial Example</keyword>
--    </section>
--    <section ref="qtsingleapplication-example-loader.html" title="Loading Documents">
--        <keyword ref="qtsingleapplication-example-loader.html">Loading Documents</keyword>
--    </section>
--    <section ref="index.html" title="Single Application">
--        <keyword ref="index.html">Single Application</keyword>
--    </section>
--</section>
--<section ref="examples.html" title="Tutorial &amp; Examples"/>
--</DCF>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication.html b/qtsingleapplication/doc/html/qtsingleapplication.html
-deleted file mode 100644
-index 2754a3b..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication.html
-+++ /dev/null
-@@ -1,162 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- qtsingleapplication.cpp -->
--<head>
--  <title>QtSingleApplication Class Reference</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">QtSingleApplication Class Reference</h1>
--<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application. <a href="#details">More...</a></p>
--<pre> #include &lt;QtSingleApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>.</p>
--<ul>
--<li><a href="qtsingleapplication-members.html">List of all members, including inherited members</a></li>
--<li><a href="qtsingleapplication-obsolete.html">Obsolete members</a></li>
--</ul>
--<hr />
--<a name="public-functions"></a>
--<h2>Public Functions</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, Type <i>type</i> )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display * <i>dpy</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display * <i>dpy</i>, const QString &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">QWidget * </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#id">id</a></b> () const</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> ()</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget * <i>aw</i>, bool <i>activateOnMessage</i> = true )</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>16 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-functions">QApplication</a></li>
--<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
--</ul>
--<hr />
--<a name="public-slots"></a>
--<h2>Public Slots</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>7 public slots inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-slots">QApplication</a></li>
--<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
--</ul>
--<hr />
--<a name="signals"></a>
--<h2>Signals</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>5 signals inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#signals">QApplication</a></li>
--<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
--</ul>
--<h3>Additional Inherited Members</h3>
--<ul>
--<li><div class="fn"></div>13 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#properties">QApplication</a></li>
--<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
--<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
--<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
--<li><div class="fn"></div>73 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#static-public-members">QApplication</a></li>
--<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
--<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
--<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#protected-functions">QApplication</a></li>
--<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
--<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
--<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
--</ul>
--<a name="details"></a>
--<hr />
--<h2>Detailed Description</h2>
--<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application.</p>
--<p>This class allows you to create applications where only one instance should be running at a time. I.e&#x2e;, if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server.</p>
--<p>By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead.</p>
--<p>The application should create the QtSingleApplication object early in the startup phase, and call <a href="qtsingleapplication.html#isRunning">isRunning</a>() to find out if another instance of this application is already running. If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. In this case, the application should continue with the initialization of the application user interface before entering the event loop with <a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a>(), as normal.</p>
--<p>The <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal will be emitted when the running application receives messages from another instance of the same application. When a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>() function and the <a href="qtsingleapplication.html#activateWindow">activateWindow</a>() slot.</p>
--<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, another instance is already running. It may be alerted to the fact that another instance has started by using the <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() function. Also data such as startup parameters (e.g&#x2e; the name of the file the user wanted this new instance to open) can be passed to the running instance with this function. Then, the application should terminate (or enter client mode).</p>
--<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, but <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() fails, that is an indication that the running instance is frozen.</p>
--<p>Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that).</p>
--<pre><span class="comment"> // Original</span>
-- int main(int argc, char **argv)
-- {
--     QApplication app(argc, argv);
--
--     MyMainWidget mmw;
--     mmw.show();
--     return app.exec();
-- }
--
--<span class="comment"> // Single instance</span>
-- int main(int argc, char **argv)
-- {
--     QtSingleApplication app(argc, argv);
--
--     if (app.isRunning())
--         return !app.sendMessage(someDataString);
--
--     MyMainWidget mmw;
--     app.setActivationWindow(&amp;mmw);
--     mmw.show();
--     return app.exec();
-- }</pre>
--<p>Once this QtSingleApplication instance is destroyed (normally when the process exits or crashes), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call <a href="qtsingleapplication.html#isRunning">isRunning</a>() or <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() will assume the role as the new running instance.</p>
--<p>For console (non-GUI) applications, <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> may be used instead of this class, to avoid the dependency on the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
--<p>See also <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>.</p>
--<hr />
--<h2>Member Function Documentation</h2>
--<h3 class="fn"><a name="QtSingleApplication"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</h3>
--<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>GUIenabled</i> are passed on to the QAppliation constructor.</p>
--<p>If you are creating a console application (i.e&#x2e; setting <i>GUIenabled</i> to false), you may consider using <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> instead.</p>
--<h3 class="fn"><a name="QtSingleApplication-2"></a>QtSingleApplication::QtSingleApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
--<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QAppliation constructor.</p>
--<h3 class="fn"><a name="QtSingleApplication-3"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a> <i>type</i> )</h3>
--<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>type</i> are passed on to the QAppliation constructor.</p>
--<h3 class="fn"><a name="QtSingleApplication-4"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
--<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
--<h3 class="fn"><a name="QtSingleApplication-5"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
--<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
--<h3 class="fn"><a name="QtSingleApplication-6"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
--<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <i>appId</i>. <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
--<h3 class="fn"><a name="activateWindow"></a>void QtSingleApplication::activateWindow ()&nbsp;&nbsp;<tt> [slot]</tt></h3>
--<p>De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set.</p>
--<p>This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance.</p>
--<p>This function should typically be called in response to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal. By default, that will happen automatically, if an activation window has been set.</p>
--<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), <a href="qtsingleapplication.html#messageReceived">messageReceived</a>(), and <a href="qtsingleapplication-obsolete.html#initialize" class="obsolete">initialize</a>().</p>
--<h3 class="fn"><a name="activationWindow"></a><a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * QtSingleApplication::activationWindow () const</h3>
--<p>Returns the applications activation window if one has been set by calling <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), otherwise returns 0.</p>
--<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>().</p>
--<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleApplication::id () const</h3>
--<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
--<h3 class="fn"><a name="isRunning"></a>bool QtSingleApplication::isRunning ()</h3>
--<p>Returns true if another instance of this application is running; otherwise false.</p>
--<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
--<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>().</p>
--<h3 class="fn"><a name="messageReceived"></a>void QtSingleApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
--<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
--<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>(), <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), and <a href="qtsingleapplication.html#activateWindow">activateWindow</a>().</p>
--<h3 class="fn"><a name="sendMessage"></a>bool QtSingleApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
--<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsingleapplication.html">QtSingleApplication</a> object in the running instance will emit the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
--<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
--<p>See also <a href="qtsingleapplication.html#isRunning">isRunning</a>() and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
--<h3 class="fn"><a name="setActivationWindow"></a>void QtSingleApplication::setActivationWindow ( <a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * <i>aw</i>, bool <i>activateOnMessage</i> = true )</h3>
--<p>Sets the activation window of this application to <i>aw</i>. The activation window is the widget that will be activated by <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(). This is typically the application's main window.</p>
--<p>If <i>activateOnMessage</i> is true (the default), the window will be activated automatically every time a message is received, just prior to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal being emitted.</p>
--<p>See also <a href="qtsingleapplication.html#activationWindow">activationWindow</a>(), <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(), and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication.index b/qtsingleapplication/doc/html/qtsingleapplication.index
-deleted file mode 100644
-index 56052c2..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication.index
-+++ /dev/null
-@@ -1,90 +0,0 @@
--<?xml version="1.0" encoding="UTF-8"?>
--<!DOCTYPE QDOCINDEX>
--<INDEX url="" title="Qt Solutions: Single Application Documentation" version="">
--    <namespace access="public" threadsafety="unspecified" status="commendable" name="" href="" location="" module="">
--        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" href="qtsinglecoreapplication.html" location="qtsinglecoreapplication.h" bases="QCoreApplication" module="">
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleCoreApplication(int &amp; argc, char ** argv)">
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication-2" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleCoreApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
--                <parameter left="const QString &amp;" right="" name="appId" default=""/>
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleCoreApplication::isRunning" href="qtsinglecoreapplication.html#isRunning" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
--            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleCoreApplication::id" href="qtsinglecoreapplication.html#id" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
--            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleCoreApplication::sendMessage" href="qtsinglecoreapplication.html#sendMessage" location="qtsinglecoreapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
--                <parameter left="const QString &amp;" right="" name="message" default=""/>
--                <parameter left="int" right="" name="timeout" default="5000"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleCoreApplication::messageReceived" href="qtsinglecoreapplication.html#messageReceived" location="qtsinglecoreapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
--                <parameter left="const QString &amp;" right="" name="message" default=""/>
--            </function>
--        </class>
--        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" href="qtsingleapplication.html" location="qtsingleapplication.h" bases="QApplication" module="">
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, bool GUIenabled)">
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--                <parameter left="bool" right="" name="GUIenabled" default="true"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-2" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
--                <parameter left="const QString &amp;" right="" name="appId" default=""/>
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-3" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="3" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, Type type)">
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--                <parameter left="Type" right="" name="type" default=""/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-4" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="4" type="" signature="QtSingleApplication(Display * dpy, Qt::HANDLE visual, Qt::HANDLE cmap)">
--                <parameter left="Display *" right="" name="dpy" default=""/>
--                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
--                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-5" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="5" type="" signature="QtSingleApplication(Display * dpy, int &amp; argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
--                <parameter left="Display *" right="" name="dpy" default=""/>
--                <parameter left="int &amp;" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
--                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-6" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="6" type="" signature="QtSingleApplication(Display * dpy, const QString &amp; appId, int argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
--                <parameter left="Display *" right="" name="dpy" default=""/>
--                <parameter left="const QString &amp;" right="" name="appId" default=""/>
--                <parameter left="int" right="" name="argc" default=""/>
--                <parameter left="char **" right="" name="argv" default=""/>
--                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
--                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleApplication::isRunning" href="qtsingleapplication.html#isRunning" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
--            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleApplication::id" href="qtsingleapplication.html#id" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
--            <function access="public" threadsafety="unspecified" status="commendable" name="setActivationWindow" fullname="QtSingleApplication::setActivationWindow" href="qtsingleapplication.html#setActivationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="setActivationWindow(QWidget * aw, bool activateOnMessage)">
--                <parameter left="QWidget *" right="" name="aw" default=""/>
--                <parameter left="bool" right="" name="activateOnMessage" default="true"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="activationWindow" fullname="QtSingleApplication::activationWindow" href="qtsingleapplication.html#activationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QWidget *" signature="activationWindow() const"/>
--            <function access="public" threadsafety="unspecified" status="obsolete" name="initialize" fullname="QtSingleApplication::initialize" href="qtsingleapplication-obsolete.html#initialize" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="initialize(bool dummy)">
--                <parameter left="bool" right="" name="dummy" default="true"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleApplication::sendMessage" href="qtsingleapplication.html#sendMessage" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
--                <parameter left="const QString &amp;" right="" name="message" default=""/>
--                <parameter left="int" right="" name="timeout" default="5000"/>
--            </function>
--            <function access="public" threadsafety="unspecified" status="commendable" name="activateWindow" fullname="QtSingleApplication::activateWindow" href="qtsingleapplication.html#activateWindow" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="void" signature="activateWindow()"/>
--            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleApplication::messageReceived" href="qtsingleapplication.html#messageReceived" location="qtsingleapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
--                <parameter left="const QString &amp;" right="" name="message" default=""/>
--            </function>
--        </class>
--        <page access="public" status="commendable" name="index.html" href="index.html" subtype="page" title="Single Application" fulltitle="Single Application" subtitle="" location="index.qdoc">
--            <contents name="description" title="Description" level="1"/>
--            <contents name="classes" title="Classes" level="1"/>
--            <contents name="examples" title="Examples" level="1"/>
--            <contents name="tested-platforms" title="Tested platforms" level="1"/>
--        </page>
--        <page access="public" status="commendable" name="qtsingleapplication-example-trivial.html" href="qtsingleapplication-example-trivial.html" subtype="page" title="A Trivial Example" fulltitle="A Trivial Example" subtitle="" location="trivial.qdoc"/>
--        <page access="public" status="commendable" name="qtsinglecoreapplication-example-console.html" href="qtsinglecoreapplication-example-console.html" subtype="page" title="A non-GUI example" fulltitle="A non-GUI example" subtitle="" location="console.qdoc"/>
--        <page access="public" status="commendable" name="qtsingleapplication-example-loader.html" href="qtsingleapplication-example-loader.html" subtype="page" title="Loading Documents" fulltitle="Loading Documents" subtitle="" location="loader.qdoc"/>
--    </namespace>
--</INDEX>
-diff --git a/qtsingleapplication/doc/html/qtsingleapplication.qhp b/qtsingleapplication/doc/html/qtsingleapplication.qhp
-deleted file mode 100644
-index ff42d9d..0000000
---- a/qtsingleapplication/doc/html/qtsingleapplication.qhp
-+++ /dev/null
-@@ -1,53 +0,0 @@
--<?xml version="1.0" encoding="UTF-8"?>
--<QtHelpProject version="1.0">
--    <namespace>com.nokia.qtsolutions.qtsingleapplication_head</namespace>
--    <virtualFolder>qdoc</virtualFolder>
--    <customFilter name="Qt Solutions: Single Application">
--        <filterAttribute>qt</filterAttribute>
--        <filterAttribute>solutions</filterAttribute>
--        <filterAttribute>qtsingleapplication</filterAttribute>
--    </customFilter>
--    <filterSection>
--        <filterAttribute>qt</filterAttribute>
--        <filterAttribute>solutions</filterAttribute>
--        <filterAttribute>qtsingleapplication</filterAttribute>
--        <toc>
--            <section ref="index.html" title="Qt Solutions: Single Application Documentation">
--                <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example"/>
--                <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example"/>
--                <section ref="qtsingleapplication-example-loader.html" title="Loading Documents"/>
--                <section ref="index.html" title="Single Application"/>
--            </section>
--        </toc>
--        <keywords>
--            <keyword name="A Trivial Example" id="A Trivial Example" ref="qtsingleapplication-example-trivial.html"/>
--            <keyword name="A non-GUI example" id="A non-GUI example" ref="qtsinglecoreapplication-example-console.html"/>
--            <keyword name="Loading Documents" id="Loading Documents" ref="qtsingleapplication-example-loader.html"/>
--            <keyword name="QtSingleApplication" id="QtSingleApplication" ref="qtsingleapplication.html"/>
--            <keyword name="activateWindow" id="QtSingleApplication::activateWindow" ref="qtsingleapplication.html#activateWindow"/>
--            <keyword name="activationWindow" id="QtSingleApplication::activationWindow" ref="qtsingleapplication.html#activationWindow"/>
--            <keyword name="id" id="QtSingleApplication::id" ref="qtsingleapplication.html#id"/>
--            <keyword name="initialize" id="QtSingleApplication::initialize" ref="qtsingleapplication-obsolete.html#initialize"/>
--            <keyword name="isRunning" id="QtSingleApplication::isRunning" ref="qtsingleapplication.html#isRunning"/>
--            <keyword name="messageReceived" id="QtSingleApplication::messageReceived" ref="qtsingleapplication.html#messageReceived"/>
--            <keyword name="sendMessage" id="QtSingleApplication::sendMessage" ref="qtsingleapplication.html#sendMessage"/>
--            <keyword name="setActivationWindow" id="QtSingleApplication::setActivationWindow" ref="qtsingleapplication.html#setActivationWindow"/>
--            <keyword name="QtSingleCoreApplication" id="QtSingleCoreApplication" ref="qtsinglecoreapplication.html"/>
--            <keyword name="id" id="QtSingleCoreApplication::id" ref="qtsinglecoreapplication.html#id"/>
--            <keyword name="isRunning" id="QtSingleCoreApplication::isRunning" ref="qtsinglecoreapplication.html#isRunning"/>
--            <keyword name="messageReceived" id="QtSingleCoreApplication::messageReceived" ref="qtsinglecoreapplication.html#messageReceived"/>
--            <keyword name="sendMessage" id="QtSingleCoreApplication::sendMessage" ref="qtsinglecoreapplication.html#sendMessage"/>
--            <keyword name="Single Application" id="Single Application" ref="index.html"/>
--        </keywords>
--        <files>
--            <file>qtsingleapplication.html</file>
--            <file>index.html</file>
--            <file>qtsingleapplication-example-trivial.html</file>
--            <file>qtsinglecoreapplication.html</file>
--            <file>qtsingleapplication-example-loader.html</file>
--            <file>qtsinglecoreapplication-example-console.html</file>
--            <file>classic.css</file>
--            <file>images/qt-logo.png</file>
--        </files>
--    </filterSection>
--</QtHelpProject>
-diff --git a/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html b/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
-deleted file mode 100644
-index 18a9ae8..0000000
---- a/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
-+++ /dev/null
-@@ -1,118 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- console.qdoc -->
--<head>
--  <title>A non-GUI example</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">A non-GUI example<br /><span class="subtitle"></span>
--</h1>
--<p>This example shows how to use the single-application functionality in a console application. It does not require the <tt>QtGui</tt> library at all.</p>
--<p>The only differences from the GUI application usage demonstrated in the other examples are:</p>
--<p>1) The <tt>.pro</tt> file should include <tt>qtsinglecoreapplication.pri</tt> instead of <tt>qtsingleapplication.pri</tt></p>
--<p>2) The class name is <tt>QtSingleCoreApplication</tt> instead of <tt>QtSingleApplication</tt>.</p>
--<p>3) No calls are made regarding window activation, for obvious reasons.</p>
--<p>console.pro:</p>
--<pre> TEMPLATE   = app
-- CONFIG    += console
-- SOURCES   += main.cpp
-- include(../../src/qtsinglecoreapplication.pri)
-- QT -= gui</pre>
--<p>main.cpp:</p>
--<pre><span class="comment"> /****************************************************************************
-- **
-- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-- ** Contact: http://www.qt-project.org/legal
-- **
-- ** This file is part of the Qt Solutions component.
-- **
-- ** You may use this file under the terms of the BSD license as follows:
-- **
-- ** &quot;Redistribution and use in source and binary forms, with or without
-- ** modification, are permitted provided that the following conditions are
-- ** met:
-- **   * Redistributions of source code must retain the above copyright
-- **     notice, this list of conditions and the following disclaimer.
-- **   * Redistributions in binary form must reproduce the above copyright
-- **     notice, this list of conditions and the following disclaimer in
-- **     the documentation and/or other materials provided with the
-- **     distribution.
-- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-- **     the names of its contributors may be used to endorse or promote
-- **     products derived from this software without specific prior written
-- **     permission.
-- **
-- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-- **
-- ****************************************************************************/</span>
--
-- #include &quot;qtsinglecoreapplication.h&quot;
-- #include &lt;QtCore/QDebug&gt;
--
-- void report(const QString&amp; msg)
-- {
--     qDebug(&quot;[%i] %s&quot;, (int)QCoreApplication::applicationPid(), qPrintable(msg));
-- }
--
-- class MainClass : public QObject
-- {
--     Q_OBJECT
-- public:
--     MainClass()
--         : QObject()
--         {}
--
-- public slots:
--     void handleMessage(const QString&amp; message)
--         {
--             report( &quot;Message received: \&quot;&quot; + message + &quot;\&quot;&quot;);
--         }
-- };
--
-- int main(int argc, char **argv)
-- {
--     report(&quot;Starting up&quot;);
--
--     QtSingleCoreApplication app(argc, argv);
--
--     if (app.isRunning()) {
--         QString msg(QString(&quot;Hi master, I am %1.&quot;).arg(QCoreApplication::applicationPid()));
--         bool sentok = app.sendMessage(msg, 2000);
--         QString rep(&quot;Another instance is running, so I will exit.&quot;);
--         rep += sentok ? &quot; Message sent ok.&quot; : &quot; Message sending failed; the other instance may be frozen.&quot;;
--         report(rep);
--         return 0;
--     } else {
--         report(&quot;No other instance is running; so I will.&quot;);
--         MainClass mainObj;
--         QObject::connect(&amp;app, SIGNAL(messageReceived(const QString&amp;)),
--                          &amp;mainObj, SLOT(handleMessage(const QString&amp;)));
--         return app.exec();
--     }
-- }
--
-- #include &quot;main.moc&quot;</pre>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html b/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
-deleted file mode 100644
-index 69fb858..0000000
---- a/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
-+++ /dev/null
-@@ -1,126 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- qtsinglecoreapplication.cpp -->
--<head>
--  <title>List of All Members for QtSingleCoreApplication</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">List of All Members for QtSingleCoreApplication</h1>
--<p>This is the complete list of members for <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>, including inherited members.</p>
--<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
--<tr><td width="45%" valign="top"><ul>
--<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
--<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp;, char ** )</div></li>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#event">event</a></b> ( QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exec">exec</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const : QString</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
--</ul></td><td valign="top"><ul>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
--<li><div class="fn"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
--<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
--</ul>
--</td></tr>
--</table></p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/html/qtsinglecoreapplication.html b/qtsingleapplication/doc/html/qtsinglecoreapplication.html
-deleted file mode 100644
-index a20cf2f..0000000
---- a/qtsingleapplication/doc/html/qtsinglecoreapplication.html
-+++ /dev/null
-@@ -1,98 +0,0 @@
--<?xml version="1.0" encoding="iso-8859-1"?>
--<!DOCTYPE html
--    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
--<!-- qtsinglecoreapplication.cpp -->
--<head>
--  <title>QtSingleCoreApplication Class Reference</title>
--  <link href="classic.css" rel="stylesheet" type="text/css" />
--</head>
--<body>
--<table border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr>
--<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
--<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
--</tr></table><h1 class="title">QtSingleCoreApplication Class Reference</h1>
--<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications. <a href="#details">More...</a></p>
--<pre> #include &lt;QtSingleCoreApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a>.</p>
--<ul>
--<li><a href="qtsinglecoreapplication-members.html">List of all members, including inherited members</a></li>
--</ul>
--<hr />
--<a name="public-functions"></a>
--<h2>Public Functions</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const</td></tr>
--<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> ()</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
--</ul>
--<hr />
--<a name="public-slots"></a>
--<h2>Public Slots</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
--</ul>
--<hr />
--<a name="signals"></a>
--<h2>Signals</h2>
--<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
--<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
--</table>
--<ul>
--<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
--<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
--</ul>
--<h3>Additional Inherited Members</h3>
--<ul>
--<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
--<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
--<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
--<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
--<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
--<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
--<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
--<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
--</ul>
--<a name="details"></a>
--<hr />
--<h2>Detailed Description</h2>
--<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications.</p>
--<p>This class is a variant of <a href="qtsingleapplication.html">QtSingleApplication</a> suited for use in console (non-GUI) applications. It is an extension of <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a> (instead of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>). It does not require the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
--<p>The API and usage is identical to <a href="qtsingleapplication.html">QtSingleApplication</a>, except that functions relating to the &quot;activation window&quot; are not present, for obvious reasons. Please refer to the <a href="qtsingleapplication.html">QtSingleApplication</a> documentation for explanation of the usage.</p>
--<p>A QtSingleCoreApplication instance can communicate to a <a href="qtsingleapplication.html">QtSingleApplication</a> instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.</p>
--<p>See also <a href="qtsingleapplication.html">QtSingleApplication</a>.</p>
--<hr />
--<h2>Member Function Documentation</h2>
--<h3 class="fn"><a name="QtSingleCoreApplication"></a>QtSingleCoreApplication::QtSingleCoreApplication ( int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
--<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
--<h3 class="fn"><a name="QtSingleCoreApplication-2"></a>QtSingleCoreApplication::QtSingleCoreApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
--<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
--<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleCoreApplication::id () const</h3>
--<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
--<h3 class="fn"><a name="isRunning"></a>bool QtSingleCoreApplication::isRunning ()</h3>
--<p>Returns true if another instance of this application is running; otherwise false.</p>
--<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
--<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
--<h3 class="fn"><a name="messageReceived"></a>void QtSingleCoreApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
--<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
--<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
--<h3 class="fn"><a name="sendMessage"></a>bool QtSingleCoreApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
--<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object in the running instance will emit the <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
--<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
--<p>See also <a href="qtsinglecoreapplication.html#isRunning">isRunning</a>() and <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>().</p>
--<p /><address><hr /><div align="center">
--<table width="100%" cellspacing="0" border="0"><tr class="address">
--<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
--<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
--<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
--</tr></table></div></address></body>
--</html>
-diff --git a/qtsingleapplication/doc/images/qt-logo.png b/qtsingleapplication/doc/images/qt-logo.png
-deleted file mode 100644
-index 794162f..0000000
---- a/qtsingleapplication/doc/images/qt-logo.png
-+++ /dev/null
-@@ -1,10 +0,0 @@
--�PNG
--
--���
IHDR���9���C�����:u���IDATx�b���?�������bh��������Jn�����Jn�����Jn�����Jn�����Jn�����Jn������ԡ� �Є����`�����r'Q���(
--!!����N�����b�_���������p�����?�?F&���F�����������312�������G.�y����G&ޏ?�}�e��W��S��S����gb�����(~������™������t�齸���g�0s�Vv`fcd��������������Y8��E�$�xd�U��Uex�$xd9D�����Dr=#������������gdd|���U�ף�w9D�-���
--2���b8�������������Ͽ���ebddc��eᔐ╗�S��W��S���caB�����#�������������cfd�]����-I�\_�20110`x����������z�������w�������������/�).�#'˯"ǯ*˫,�+'�)�����@lY��������@}��f��ۯ����ͼ��
--2���@d���$��1�����H������������'�)&�#'ç,ϯ*˧,�#/�%��́�X�����������gfd�����O�X8Y9��s2��G�C�3�g@
fFff.���3������O�|����v��,�l<l|ܬ���5�
!��X������š�300|�����FFF"�,HpBJ����X8�8�����������w������|�1�0����J�ơ��!�?���-� Y�;�Sf��V�^z87}D:�����"6İ��������ǟo�߾���?7+?/�������##f���?#3�����������"����Pff&&���+q�:&[����	122|�����+��o<�x##;3'"����|����?Vf66fv�,�����"ǭ���ͼ�$��)9M,,L�҃��A�CX�_�Y!���c�G�^~}������_FF�������b�,����ョ��d/�����"��������|p����-�L�������?x�����ĭ&�o����;#3+ûW�n��7�l�_�渘�������W�������"٭��3�q0^?�C�Ieb^=###333���O&�4g��?��0����K�G�̲������gfbz��������,�=���J�����"٭LL��1?��-/8Q�[���?�6᫯O���̿_�:7>�%��������?fR���_�|bb`y�엉�3+ԇ�,̌,�4� ������"ͭ��3��2>{�E4�އ��������˯N���������Ԧ�+��������Q�efd���ϛ?6:&������Ǜ�?�|��������"=\��n���$����FFfF���/�<������/.���,�le```d`b``0���{HT�O؝�W�l<!���U��9(�b�>0�����"�`dd������f���cfbb`dx��՛o� y���AP�����,�,��eebW�a�á,�����Qܬ����L�L>�<�d158�����"!\��g`bb���?�7F]u� ��?�~������?�������x�����������!�������"1\�~|���U^\���������/V�������������׏_?p@J$OG���%/Z�-���1�����O�f�����������"9
��񟁙U�_��X�������׿����.ll����������������M�o>��5���Ll�l����������1�0m���00��w��TVx��O�Ú ��b������GB��8�Gt�Uմ�Xp�l��I����������I
--� ���׶�R/���@2��Y{� ]���d9#u��l�e+�}�N6�������Xf�J�����"խ��������J�13�002³������@�K������"ŭ��z���o?�1000@{���l��Ͽ��`��?ï����2�������"��ecgd�����H�.fFf���������Ɇ��}���Ͽߌ����������"٭윌��y���0200��0�Ac�������<�\p�o�����/��.������"����?;#�ߛ�!����h�g�d����dd����\<|\��300<�|�?j��������"-��������U�������L9D�8E���
i���[ZP����?��z��5fF�6��?���o������"��b�')�~�����?3311�g���/���֯�����cz������߿��>��p��vf����L��~�g����'"������"٭���Qd�����'��i������`�����Ϳ'?�Hۅ�Ǟy�������?�200��� �%�)h��1�.�7?�����.�����"ͭ��3�2�����y�VfFfGyO���/���:�?�������LL�[�,���?/?����^}|��:`luX�-�t�N���X������"�������_Ck��Ƕ�>w��������:����7Wl�S�������ofF�cOv{����OD����7톚�����)*$���@d�����"�������7��$��1CRgɉi[���!�.f&v_#����������ɧ{='JX�X��c`a�g��պ�]R\��̅�?ӧ_�ᄏv�Ѧ��_�2��������"g|������f��ە�(�m��
)\!�&&&F������{������b�a���~>q�ci.�O?�������l���-������"s܅���Ǐ��<Ϟ���n%��h�m���)t�N���6����P��߿��0�H��~����̌,<l��	�|A�����"ӭ���+&�%���v��[7���wed����3�?D#���������gade`b��wh��I������"߭������Q�@���{���U�Rf������������/>�|�ןhm���F>���������1�:���������������19���_/ر����������cc��7k�䱞�]����ۯ������咒�Sa���������B[��?���|}kf��~�����?ɍkF�/�>9*�q�p��Q�������(
@�##ï��e���1|�QX�n���������_������	#ơ��p7���B]X?F������������[a��'���K�����+�
--�q�������/̌,,L��L�����������7t������Dʡ�z
--/�����#300��������V���nC����")"����/�?110q�p����￿�����l����_�GV�WN�OU�_UIPSCؐ���?�\e``�������=_�R(2r-d���������?ÿ_��������?+7�8��$���������$���+�:�xB��������VFn^�?����cbdd@�y��Ă������������f```ab�a�㔆L�)���J��sI�2��Ҥ!#3��������>�	�^��y^~o	�(��?+33d:���.c�f�L����(���H�*sJ`��Mg222�ڥ�����ž�����������15����,l����l�"<�<r�|*��jr�*�<
--"\�]������D�t&V�������7'���f��g����UW�@�WY�WA�K�c��)`������"�ց�	s���?���v&������"�V����g�y�������"���������J�������Jn�����Jn�����Jn�����Jn�����Jn������Qqr�{������IEND�B`�
-\ No newline at end of file
-diff --git a/qtsingleapplication/doc/index.qdoc b/qtsingleapplication/doc/index.qdoc
-deleted file mode 100644
-index 796dffe..0000000
---- a/qtsingleapplication/doc/index.qdoc
-+++ /dev/null
-@@ -1,50 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--/*!
--	\page index.html
--	\title Single Application
--
--    	\section1 Description
--	
--			The QtSingleApplication component provides support
--			for applications that can be only started once per user.
--		
--
--	
--			For some applications it is useful or even critical that they are started
--			only once by any user. Future attempts to start the application should
--			activate any already running instance, and possibly perform requested
--			actions, e.g. loading a file, in that instance.
--
--			The QtSingleApplication class provides an interface to detect a running
--			instance, and to send command strings to that instance.
--	                For console (non-GUI) applications, the QtSingleCoreApplication variant is provided, which avoids dependency on QtGui.
--
--		
--
--    	
--		\section1 Classes
--	    \list
--	 \i  QtSingleApplication \i  QtSingleCoreApplication\endlist
--	
--		\section1 Examples
--	    \list
--	 \i  \link qtsingleapplication-example-trivial.html A Trivial Example \endlink  \i  \link qtsingleapplication-example-loader.html Loading Documents \endlink  \i  \link qtsinglecoreapplication-example-console.html A Non-GUI Example \endlink \endlist
--	
--	
--
--    	
--
--    	
--    		\section1 Tested platforms
--		\list
--		\i Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005
--		    \i Qt 4.4, 4.5 / Linux / gcc
--		    \i Qt 4.4, 4.5 / MacOS X 10.5 / gcc
--		    \endlist
--
--    	
--
--	
--*/
-diff --git a/qtsingleapplication/examples/console/console.pro b/qtsingleapplication/examples/console/console.pro
-deleted file mode 100644
-index e0390e2..0000000
---- a/qtsingleapplication/examples/console/console.pro
-+++ /dev/null
-@@ -1,5 +0,0 @@
--TEMPLATE   = app
--CONFIG    += console
--SOURCES   += main.cpp
--include(../../src/qtsinglecoreapplication.pri)
--QT -= gui
-diff --git a/qtsingleapplication/examples/console/console.qdoc b/qtsingleapplication/examples/console/console.qdoc
-deleted file mode 100644
-index 2706e26..0000000
---- a/qtsingleapplication/examples/console/console.qdoc
-+++ /dev/null
-@@ -1,28 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--/*! \page qtsinglecoreapplication-example-console.html
--    \title A non-GUI example
--
--    This example shows how to use the single-application functionality
--    in a console application. It does not require the \c QtGui library
--    at all.
--
--    The only differences from the GUI application usage demonstrated
--    in the other examples are:
--
--    1) The \c.pro file should include \c qtsinglecoreapplication.pri
--       instead of \c qtsingleapplication.pri
--
--    2) The class name is \c QtSingleCoreApplication instead of \c
--       QtSingleApplication.
--
--    3) No calls are made regarding window activation, for obvious reasons.
--
--    console.pro:
--    \quotefile console/console.pro
--
--    main.cpp:
--    \quotefile console/main.cpp
--
--*/
-diff --git a/qtsingleapplication/examples/console/main.cpp b/qtsingleapplication/examples/console/main.cpp
-deleted file mode 100644
-index 13fd00e..0000000
---- a/qtsingleapplication/examples/console/main.cpp
-+++ /dev/null
-@@ -1,52 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--
--#include "qtsinglecoreapplication.h"
--#include <QDebug>
--
--
--void report(const QString& msg)
--{
--    qDebug("[%i] %s", (int)QCoreApplication::applicationPid(), qPrintable(msg));
--}
--
--class MainClass : public QObject
--{
--    Q_OBJECT
--public:
--    MainClass()
--        : QObject()
--        {}
--
--public slots:
--    void handleMessage(const QString& message)
--        {
--            report( "Message received: \"" + message + "\"");
--        }
--};
--
--int main(int argc, char **argv)
--{
--    report("Starting up");
--
--    QtSingleCoreApplication app(argc, argv);
--
--    if (app.isRunning()) {
--        QString msg(QString("Hi master, I am %1.").arg(QCoreApplication::applicationPid()));
--        bool sentok = app.sendMessage(msg, 2000);
--        QString rep("Another instance is running, so I will exit.");
--        rep += sentok ? " Message sent ok." : " Message sending failed; the other instance may be frozen.";
--        report(rep);
--        return 0;
--    } else {
--        report("No other instance is running; so I will.");
--        MainClass mainObj;
--        QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
--                         &mainObj, SLOT(handleMessage(const QString&)));
--        return app.exec();
--    }
--}
--
--
--#include "main.moc"
-diff --git a/qtsingleapplication/examples/examples.pro b/qtsingleapplication/examples/examples.pro
-deleted file mode 100644
-index 36b8fd3..0000000
---- a/qtsingleapplication/examples/examples.pro
-+++ /dev/null
-@@ -1,4 +0,0 @@
--TEMPLATE = subdirs
--SUBDIRS	 = trivial \
--	   loader  \
--           console
-diff --git a/qtsingleapplication/examples/loader/file1.qsl b/qtsingleapplication/examples/loader/file1.qsl
-deleted file mode 100644
-index 50fcd26..0000000
---- a/qtsingleapplication/examples/loader/file1.qsl
-+++ /dev/null
-@@ -1 +0,0 @@
--File 1
-diff --git a/qtsingleapplication/examples/loader/file2.qsl b/qtsingleapplication/examples/loader/file2.qsl
-deleted file mode 100644
-index 4475433..0000000
---- a/qtsingleapplication/examples/loader/file2.qsl
-+++ /dev/null
-@@ -1 +0,0 @@
--File 2
-diff --git a/qtsingleapplication/examples/loader/loader.pro b/qtsingleapplication/examples/loader/loader.pro
-deleted file mode 100644
-index 3e52586..0000000
---- a/qtsingleapplication/examples/loader/loader.pro
-+++ /dev/null
-@@ -1,6 +0,0 @@
--greaterThan(QT_MAJOR_VERSION, 4): QT += printsupport
--TEMPLATE	= app
--
--include(../../src/qtsingleapplication.pri)
--
--SOURCES		+= main.cpp
-diff --git a/qtsingleapplication/examples/loader/loader.qdoc b/qtsingleapplication/examples/loader/loader.qdoc
-deleted file mode 100644
-index 1f55026..0000000
---- a/qtsingleapplication/examples/loader/loader.qdoc
-+++ /dev/null
-@@ -1,44 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--/*! \page qtsingleapplication-example-loader.html
--    \title Loading Documents
--
--    The application in this example loads or prints the documents 
--    passed as commandline parameters to further instances of this
--    application.
--
--    \quotefromfile loader/main.cpp
--    \printuntil };
--    The user interface in this application is a QMainWindow subclass
--    with a QMdiArea as the central widget. It implements a slot
--    \c handleMessage() that will be connected to the messageReceived()
--    signal of the QtSingleApplication class.
--
--    \printuntil }
--    The MainWindow constructor creates a minimal user interface.
--
--    \printto case Print:
--    The handleMessage() slot interprets the message passed in as a
--    filename that can be prepended with \e /print to indicate that
--    the file should just be printed rather than loaded.
--
--    \printto #include
--    Loading the file will also activate the window.
--
--    \printto mw
--    The \c main entry point function creates a QtSingleApplication
--    object, and creates a message to send to a running instance
--    of the application. If the message was sent successfully the
--    process exits immediately.
--
--    \printuntil }
--    If the message could not be sent the application starts up.  Note
--    that \c false is passed to the call to setActivationWindow() to
--    prevent automatic activation for every message received, e.g. when
--    the application should just print a file. Instead, the message
--    handling function determines whether activation is requested, and
--    signals that by emitting the needToShow() signal. This is then
--    simply connected directly to QtSingleApplication's
--    activateWindow() slot.
--*/
-diff --git a/qtsingleapplication/examples/loader/main.cpp b/qtsingleapplication/examples/loader/main.cpp
-deleted file mode 100644
-index 5078490..0000000
---- a/qtsingleapplication/examples/loader/main.cpp
-+++ /dev/null
-@@ -1,115 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#include <qtsingleapplication.h>
--#include <QFile>
--#include <QMainWindow>
--#include <QPrinter>
--#include <QPainter>
--#include <QTextEdit>
--#include <QMdiArea>
--#include <QTextStream>
--
--class MainWindow : public QMainWindow
--{
--    Q_OBJECT
--public:
--    MainWindow();
--
--public slots:
--    void handleMessage(const QString& message);
--
--signals:
--    void needToShow();
--
--private:
--    QMdiArea *workspace;
--};
--
--MainWindow::MainWindow()
--{
--    workspace = new QMdiArea(this);
--
--    setCentralWidget(workspace);
--}
--
--void MainWindow::handleMessage(const QString& message)
--{
--    enum Action {
--	Nothing,
--	Open,
--	Print
--    } action;
--
--    action = Nothing;
--    QString filename = message;
--    if (message.toLower().startsWith("/print ")) {
--	filename = filename.mid(7);
--	action = Print;
--    } else if (!message.isEmpty()) {
--	action = Open;
--    }
--    if (action == Nothing) {
--        emit needToShow();
--	return;
--    }
--
--    QFile file(filename);
--    QString contents;
--    if (file.open(QIODevice::ReadOnly))
--        contents = file.readAll();
--    else
--        contents = "[[Error: Could not load file " + filename + "]]";
--
--    QTextEdit *view = new QTextEdit;
--    view->setPlainText(contents);
--
--    switch(action) {
--    case Print:
--	{
--	    QPrinter printer;
--            view->print(&printer);
--            delete view;
--        }
--	break;
--
--    case Open:
--	{
--	    workspace->addSubWindow(view);
--	    view->setWindowTitle(message);
--	    view->show();
--            emit needToShow();
--	}
--	break;
--    default:
--	break;
--    };
--}
--
--#include "main.moc"
--
--int main(int argc, char **argv)
--{
--    QtSingleApplication instance("File loader QtSingleApplication example", argc, argv);
--    QString message;
--    for (int a = 1; a < argc; ++a) {
--	message += argv[a];
--	if (a < argc-1)
--	    message += " ";
--    }
--
--    if (instance.sendMessage(message))
--	return 0;
--
--    MainWindow mw;
--    mw.handleMessage(message);
--    mw.show();
--
--    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
--		     &mw, SLOT(handleMessage(const QString&)));
--
--    instance.setActivationWindow(&mw, false);
--    QObject::connect(&mw, SIGNAL(needToShow()), &instance, SLOT(activateWindow()));
--
--    return instance.exec();
--}
-diff --git a/qtsingleapplication/examples/trivial/main.cpp b/qtsingleapplication/examples/trivial/main.cpp
-deleted file mode 100644
-index d243cc5..0000000
---- a/qtsingleapplication/examples/trivial/main.cpp
-+++ /dev/null
-@@ -1,41 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#include <qtsingleapplication.h>
--#include <QTextEdit>
--
--class TextEdit : public QTextEdit
--{
--    Q_OBJECT
--public:
--    TextEdit(QWidget *parent = 0)
--        : QTextEdit(parent)
--    {}
--public slots:
--    void append(const QString &str)
--    {
--        QTextEdit::append(str);
--    }
--};
--
--#include "main.moc"
--
--
--
--int main(int argc, char **argv)
--{
--    QtSingleApplication instance(argc, argv);
--    if (instance.sendMessage("Wake up!"))
--	return 0;
--
--    TextEdit logview;
--    logview.setReadOnly(true);
--    logview.show();
--
--    instance.setActivationWindow(&logview);
--
--    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
--		     &logview, SLOT(append(const QString&)));
--
--    return instance.exec();
--}
-diff --git a/qtsingleapplication/examples/trivial/trivial.pro b/qtsingleapplication/examples/trivial/trivial.pro
-deleted file mode 100644
-index 673497a..0000000
---- a/qtsingleapplication/examples/trivial/trivial.pro
-+++ /dev/null
-@@ -1,5 +0,0 @@
--TEMPLATE	= app
--
--include(../../src/qtsingleapplication.pri)
--
--SOURCES		+= main.cpp
-diff --git a/qtsingleapplication/examples/trivial/trivial.qdoc b/qtsingleapplication/examples/trivial/trivial.qdoc
-deleted file mode 100644
-index 4a8640e..0000000
---- a/qtsingleapplication/examples/trivial/trivial.qdoc
-+++ /dev/null
-@@ -1,39 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--/*! \page qtsingleapplication-example-trivial.html
--    \title A Trivial Example
--
--    The application in this example has a log-view that displays
--    messages sent by further instances of the same application.
--
--    The example demonstrates the use of the QtSingleApplication
--    class to detect and communicate with a running instance of
--    the application using the sendMessage() API. The messageReceived()
--    signal is used to display received messages in a QTextEdit log.
--
--    \quotefromfile trivial/main.cpp
--    \printuntil instance
--    The example has only the \c main entry point function.
--    A QtSingleApplication object is created immediately.
--
--    \printuntil return 
--    If another instance of this application is already running,
--    sendMessage() will succeed, and this instance just exits
--    immediately.
--
--    \printuntil show()
--    Otherwise the instance continues as normal and creates the
--    user interface.
--
--    \printuntil return instance.exec();
--    The \c logview object is also set as the application's activation
--    window. Every time a message is received, the window will be raised
--    and activated automatically.
--
--    The messageReceived() signal is also connected to the QTextEdit's
--    append() slot. Every message received from further instances of
--    this application will be displayed in the log.
--
--    Finally the event loop is entered.
--*/
-diff --git a/qtsingleapplication/qtsingleapplication.pro b/qtsingleapplication/qtsingleapplication.pro
-deleted file mode 100644
-index 07257c5..0000000
---- a/qtsingleapplication/qtsingleapplication.pro
-+++ /dev/null
-@@ -1,5 +0,0 @@
--TEMPLATE=subdirs
--CONFIG += ordered
--include(common.pri)
--qtsingleapplication-uselib:SUBDIRS=buildlib
--SUBDIRS+=examples
-diff --git a/qtsingleapplication/src/QtLockedFile b/qtsingleapplication/src/QtLockedFile
-deleted file mode 100644
-index 16b48ba..0000000
---- a/qtsingleapplication/src/QtLockedFile
-+++ /dev/null
-@@ -1 +0,0 @@
--#include "qtlockedfile.h"
-diff --git a/qtsingleapplication/src/QtSingleApplication b/qtsingleapplication/src/QtSingleApplication
-deleted file mode 100644
-index d111bf7..0000000
---- a/qtsingleapplication/src/QtSingleApplication
-+++ /dev/null
-@@ -1 +0,0 @@
--#include "qtsingleapplication.h"
-diff --git a/qtsingleapplication/src/qtlocalpeer.cpp b/qtsingleapplication/src/qtlocalpeer.cpp
-deleted file mode 100644
-index 7e99171..0000000
---- a/qtsingleapplication/src/qtlocalpeer.cpp
-+++ /dev/null
-@@ -1,177 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--
--#include "qtlocalpeer.h"
--#include <QCoreApplication>
--#include <QDataStream>
--#include <QRegularExpression>
--#include <QTime>
--
--#if defined(Q_OS_WIN)
--#include <QLibrary>
--#include <qt_windows.h>
--typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
--static PProcessIdToSessionId pProcessIdToSessionId = 0;
--#endif
--#if defined(Q_OS_UNIX)
--#include <sys/types.h>
--#include <time.h>
--#include <unistd.h>
--#endif
--
--namespace QtLP_Private {
--#include "qtlockedfile.cpp"
--#if defined(Q_OS_WIN)
--#include "qtlockedfile_win.cpp"
--#else
--#include "qtlockedfile_unix.cpp"
--#endif
--}
--
--const char* QtLocalPeer::ack = "ack";
--
--QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
--    : QObject(parent), id(appId)
--{
--    QString prefix = id;
--    if (id.isEmpty()) {
--        id = QCoreApplication::applicationFilePath();
--#if defined(Q_OS_WIN)
--        id = id.toLower();
--#endif
--        prefix = id.section(QLatin1Char('/'), -1);
--    }
--    prefix.remove(QRegularExpression("[^a-zA-Z]"));
--    prefix.truncate(6);
--
--    QByteArray idc = id.toUtf8();
--    quint16 idNum = qChecksum(idc.constData(), idc.size());
--    socketName = QLatin1String("qtsingleapp-") + prefix
--                 + QLatin1Char('-') + QString::number(idNum, 16);
--
--#if defined(Q_OS_WIN)
--    if (!pProcessIdToSessionId) {
--        QLibrary lib("kernel32");
--        pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
--    }
--    if (pProcessIdToSessionId) {
--        DWORD sessionId = 0;
--        pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
--        socketName += QLatin1Char('-') + QString::number(sessionId, 16);
--    }
--#else
--    socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
--#endif
--
--    server = new QLocalServer(this);
--    QString lockName = QDir(QDir::tempPath()).absolutePath()
--                       + QLatin1Char('/') + socketName
--                       + QLatin1String("-lockfile");
--    lockFile.setFileName(lockName);
--    lockFile.open(QIODevice::ReadWrite);
--}
--
--
--
--bool QtLocalPeer::isClient()
--{
--    if (lockFile.isLocked())
--        return false;
--
--    if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
--        return true;
--
--    bool res = server->listen(socketName);
--#if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
--    // ### Workaround
--    if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
--        QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
--        res = server->listen(socketName);
--    }
--#endif
--    if (!res)
--        qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
--    QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
--    return false;
--}
--
--
--bool QtLocalPeer::sendMessage(const QString &message, int timeout)
--{
--    if (!isClient())
--        return false;
--
--    QLocalSocket socket;
--    bool connOk = false;
--    for(int i = 0; i < 2; i++) {
--        // Try twice, in case the other instance is just starting up
--        socket.connectToServer(socketName);
--        connOk = socket.waitForConnected(timeout/2);
--        if (connOk || i)
--            break;
--        int ms = 250;
--#if defined(Q_OS_WIN)
--        Sleep(DWORD(ms));
--#else
--        struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
--        nanosleep(&ts, NULL);
--#endif
--    }
--    if (!connOk)
--        return false;
--
--    QByteArray uMsg(message.toUtf8());
--    QDataStream ds(&socket);
--    ds.writeBytes(uMsg.constData(), uMsg.size());
--    bool res = socket.waitForBytesWritten(timeout);
--    if (res) {
--        res &= socket.waitForReadyRead(timeout);   // wait for ack
--        if (res)
--            res &= (socket.read(qstrlen(ack)) == ack);
--    }
--    return res;
--}
--
--
--void QtLocalPeer::receiveConnection()
--{
--    QLocalSocket* socket = server->nextPendingConnection();
--    if (!socket)
--        return;
--
--    while (true) {
--        if (socket->state() == QLocalSocket::UnconnectedState) {
--            qWarning("QtLocalPeer: Peer disconnected");
--            delete socket;
--            return;
--        }
--        if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
--            break;
--        socket->waitForReadyRead();
--    }
--
--    QDataStream ds(socket);
--    QByteArray uMsg;
--    quint32 remaining;
--    ds >> remaining;
--    uMsg.resize(remaining);
--    int got = 0;
--    char* uMsgBuf = uMsg.data();
--    do {
--        got = ds.readRawData(uMsgBuf, remaining);
--        remaining -= got;
--        uMsgBuf += got;
--    } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
--    if (got < 0) {
--        qWarning("QtLocalPeer: Message reception failed %s", socket->errorString().toLatin1().constData());
--        delete socket;
--        return;
--    }
--    QString message(QString::fromUtf8(uMsg));
--    socket->write(ack, qstrlen(ack));
--    socket->waitForBytesWritten(1000);
--    socket->waitForDisconnected(1000); // make sure client reads ack
--    delete socket;
--    emit messageReceived(message); //### (might take a long time to return)
--}
-diff --git a/qtsingleapplication/src/qtlocalpeer.h b/qtsingleapplication/src/qtlocalpeer.h
-deleted file mode 100644
-index 5e6db56..0000000
---- a/qtsingleapplication/src/qtlocalpeer.h
-+++ /dev/null
-@@ -1,40 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#ifndef QTLOCALPEER_H
--#define QTLOCALPEER_H
--
--#include <QLocalServer>
--#include <QLocalSocket>
--#include <QDir>
--
--#include "qtlockedfile.h"
--
--class QtLocalPeer : public QObject
--{
--    Q_OBJECT
--
--public:
--    QtLocalPeer(QObject *parent = 0, const QString &appId = QString());
--    bool isClient();
--    bool sendMessage(const QString &message, int timeout);
--    QString applicationId() const
--        { return id; }
--
--Q_SIGNALS:
--    void messageReceived(const QString &message);
--
--protected Q_SLOTS:
--    void receiveConnection();
--
--protected:
--    QString id;
--    QString socketName;
--    QLocalServer* server;
--    QtLP_Private::QtLockedFile lockFile;
--
--private:
--    static const char* ack;
--};
--
--#endif // QTLOCALPEER_H
-diff --git a/qtsingleapplication/src/qtlockedfile.cpp b/qtsingleapplication/src/qtlockedfile.cpp
-deleted file mode 100644
-index 78f20bc..0000000
---- a/qtsingleapplication/src/qtlockedfile.cpp
-+++ /dev/null
-@@ -1,156 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#include "qtlockedfile.h"
--
--/*!
--    \class QtLockedFile
--
--    \brief The QtLockedFile class extends QFile with advisory locking
--    functions.
--
--    A file may be locked in read or write mode. Multiple instances of
--    \e QtLockedFile, created in multiple processes running on the same
--    machine, may have a file locked in read mode. Exactly one instance
--    may have it locked in write mode. A read and a write lock cannot
--    exist simultaneously on the same file.
--
--    The file locks are advisory. This means that nothing prevents
--    another process from manipulating a locked file using QFile or
--    file system functions offered by the OS. Serialization is only
--    guaranteed if all processes that access the file use
--    QLockedFile. Also, while holding a lock on a file, a process
--    must not open the same file again (through any API), or locks
--    can be unexpectedly lost.
--
--    The lock provided by an instance of \e QtLockedFile is released
--    whenever the program terminates. This is true even when the
--    program crashes and no destructors are called.
--*/
--
--/*! \enum QtLockedFile::LockMode
--
--    This enum describes the available lock modes.
--
--    \value ReadLock A read lock.
--    \value WriteLock A write lock.
--    \value NoLock Neither a read lock nor a write lock.
--*/
--
--/*!
--    Constructs an unlocked \e QtLockedFile object. This constructor
--    behaves in the same way as \e QFile::QFile().
--
--    \sa QFile::QFile()
--*/
--QtLockedFile::QtLockedFile()
--    : QFile()
--{
--#ifdef Q_OS_WIN
--    wmutex = 0;
--    rmutex = 0;
--#endif
--    m_lock_mode = NoLock;
--}
--
--/*!
--    Constructs an unlocked QtLockedFile object with file \a name. This
--    constructor behaves in the same way as \e QFile::QFile(const
--    QString&).
--
--    \sa QFile::QFile()
--*/
--QtLockedFile::QtLockedFile(const QString &name)
--    : QFile(name)
--{
--#ifdef Q_OS_WIN
--    wmutex = 0;
--    rmutex = 0;
--#endif
--    m_lock_mode = NoLock;
--}
--
--/*!
--  Opens the file in OpenMode \a mode.
--
--  This is identical to QFile::open(), with the one exception that the
--  Truncate mode flag is disallowed. Truncation would conflict with the
--  advisory file locking, since the file would be modified before the
--  write lock is obtained. If truncation is required, use resize(0)
--  after obtaining the write lock.
--
--  Returns true if successful; otherwise false.
--
--  \sa QFile::open(), QFile::resize()
--*/
--bool QtLockedFile::open(OpenMode mode)
--{
--    if (mode & QIODevice::Truncate) {
--        qWarning("QtLockedFile::open(): Truncate mode not allowed.");
--        return false;
--    }
--    return QFile::open(mode);
--}
--
--/*!
--    Returns \e true if this object has a in read or write lock;
--    otherwise returns \e false.
--
--    \sa lockMode()
--*/
--bool QtLockedFile::isLocked() const
--{
--    return m_lock_mode != NoLock;
--}
--
--/*!
--    Returns the type of lock currently held by this object, or \e
--    QtLockedFile::NoLock.
--
--    \sa isLocked()
--*/
--QtLockedFile::LockMode QtLockedFile::lockMode() const
--{
--    return m_lock_mode;
--}
--
--/*!
--    \fn bool QtLockedFile::lock(LockMode mode, bool block = true)
--
--    Obtains a lock of type \a mode. The file must be opened before it
--    can be locked.
--
--    If \a block is true, this function will block until the lock is
--    aquired. If \a block is false, this function returns \e false
--    immediately if the lock cannot be aquired.
--
--    If this object already has a lock of type \a mode, this function
--    returns \e true immediately. If this object has a lock of a
--    different type than \a mode, the lock is first released and then a
--    new lock is obtained.
--
--    This function returns \e true if, after it executes, the file is
--    locked by this object, and \e false otherwise.
--
--    \sa unlock(), isLocked(), lockMode()
--*/
--
--/*!
--    \fn bool QtLockedFile::unlock()
--
--    Releases a lock.
--
--    If the object has no lock, this function returns immediately.
--
--    This function returns \e true if, after it executes, the file is
--    not locked by this object, and \e false otherwise.
--
--    \sa lock(), isLocked(), lockMode()
--*/
--
--/*!
--    \fn QtLockedFile::~QtLockedFile()
--
--    Destroys the \e QtLockedFile object. If any locks were held, they
--    are released.
--*/
-diff --git a/qtsingleapplication/src/qtlockedfile.h b/qtsingleapplication/src/qtlockedfile.h
-deleted file mode 100644
-index c729bf2..0000000
---- a/qtsingleapplication/src/qtlockedfile.h
-+++ /dev/null
-@@ -1,60 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#ifndef QTLOCKEDFILE_H
--#define QTLOCKEDFILE_H
--
--#include <QFile>
--#ifdef Q_OS_WIN
--#include <QVector>
--#endif
--
--#if defined(Q_OS_WIN)
--#  if !defined(QT_QTLOCKEDFILE_EXPORT) && !defined(QT_QTLOCKEDFILE_IMPORT)
--#    define QT_QTLOCKEDFILE_EXPORT
--#  elif defined(QT_QTLOCKEDFILE_IMPORT)
--#    if defined(QT_QTLOCKEDFILE_EXPORT)
--#      undef QT_QTLOCKEDFILE_EXPORT
--#    endif
--#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllimport)
--#  elif defined(QT_QTLOCKEDFILE_EXPORT)
--#    undef QT_QTLOCKEDFILE_EXPORT
--#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllexport)
--#  endif
--#else
--#  define QT_QTLOCKEDFILE_EXPORT
--#endif
--
--namespace QtLP_Private {
--
--class QT_QTLOCKEDFILE_EXPORT QtLockedFile : public QFile
--{
--public:
--    enum LockMode { NoLock = 0, ReadLock, WriteLock };
--
--    QtLockedFile();
--    QtLockedFile(const QString &name);
--    ~QtLockedFile();
--
--    bool open(OpenMode mode);
--
--    bool lock(LockMode mode, bool block = true);
--    bool unlock();
--    bool isLocked() const;
--    LockMode lockMode() const;
--
--private:
--#ifdef Q_OS_WIN
--    Qt::HANDLE wmutex;
--    Qt::HANDLE rmutex;
--    QVector<Qt::HANDLE> rmutexes;
--    QString mutexname;
--
--    Qt::HANDLE getMutexHandle(int idx, bool doCreate);
--    bool waitMutex(Qt::HANDLE mutex, bool doBlock);
--
--#endif
--    LockMode m_lock_mode;
--};
--}
--#endif
-diff --git a/qtsingleapplication/src/qtlockedfile_unix.cpp b/qtsingleapplication/src/qtlockedfile_unix.cpp
-deleted file mode 100644
-index 8385d8b..0000000
---- a/qtsingleapplication/src/qtlockedfile_unix.cpp
-+++ /dev/null
-@@ -1,78 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#include <string.h>
--#include <errno.h>
--#include <unistd.h>
--#include <fcntl.h>
--
--#include "qtlockedfile.h"
--
--bool QtLockedFile::lock(LockMode mode, bool block)
--{
--    if (!isOpen()) {
--        qWarning("QtLockedFile::lock(): file is not opened");
--        return false;
--    }
-- 
--    if (mode == NoLock)
--        return unlock();
--           
--    if (mode == m_lock_mode)
--        return true;
--
--    if (m_lock_mode != NoLock)
--        unlock();
--
--    struct flock fl;
--    fl.l_whence = SEEK_SET;
--    fl.l_start = 0;
--    fl.l_len = 0;
--    fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK;
--    int cmd = block ? F_SETLKW : F_SETLK;
--    int ret = fcntl(handle(), cmd, &fl);
--    
--    if (ret == -1) {
--        if (errno != EINTR && errno != EAGAIN)
--            qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
--        return false;
--    }
--
--    
--    m_lock_mode = mode;
--    return true;
--}
--
--
--bool QtLockedFile::unlock()
--{
--    if (!isOpen()) {
--        qWarning("QtLockedFile::unlock(): file is not opened");
--        return false;
--    }
--
--    if (!isLocked())
--        return true;
--
--    struct flock fl;
--    fl.l_whence = SEEK_SET;
--    fl.l_start = 0;
--    fl.l_len = 0;
--    fl.l_type = F_UNLCK;
--    int ret = fcntl(handle(), F_SETLKW, &fl);
--    
--    if (ret == -1) {
--        qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
--        return false;
--    }
--    
--    m_lock_mode = NoLock;
--    return true;
--}
--
--QtLockedFile::~QtLockedFile()
--{
--    if (isOpen())
--        unlock();
--}
--
-diff --git a/qtsingleapplication/src/qtlockedfile_win.cpp b/qtsingleapplication/src/qtlockedfile_win.cpp
-deleted file mode 100644
-index 28cf072..0000000
---- a/qtsingleapplication/src/qtlockedfile_win.cpp
-+++ /dev/null
-@@ -1,174 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#include "qtlockedfile.h"
--#include <qt_windows.h>
--#include <QFileInfo>
--
--#define MUTEX_PREFIX "QtLockedFile mutex "
--// Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS
--#define MAX_READERS MAXIMUM_WAIT_OBJECTS
--
--#if QT_VERSION >= 0x050000
--#define QT_WA(unicode, ansi) unicode
--#endif
--
--Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate)
--{
--    if (mutexname.isEmpty()) {
--        QFileInfo fi(*this);
--        mutexname = QString::fromLatin1(MUTEX_PREFIX)
--                    + fi.absoluteFilePath().toLower();
--    }
--    QString mname(mutexname);
--    if (idx >= 0)
--        mname += QString::number(idx);
--
--    Qt::HANDLE mutex;
--    if (doCreate) {
--        QT_WA( { mutex = CreateMutexW(NULL, FALSE, (TCHAR*)mname.utf16()); },
--               { mutex = CreateMutexA(NULL, FALSE, mname.toLocal8Bit().constData()); } );
--        if (!mutex) {
--            qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
--            return 0;
--        }
--    }
--    else {
--        QT_WA( { mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, (TCHAR*)mname.utf16()); },
--               { mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, mname.toLocal8Bit().constData()); } );
--        if (!mutex) {
--            if (GetLastError() != ERROR_FILE_NOT_FOUND)
--                qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
--            return 0;
--        }
--    }
--    return mutex;
--}
--
--bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock)
--{
--    Q_ASSERT(mutex);
--    DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0);
--    switch (res) {
--    case WAIT_OBJECT_0:
--    case WAIT_ABANDONED:
--        return true;
--        break;
--    case WAIT_TIMEOUT:
--        break;
--    default:
--        qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
--    }
--    return false;
--}
--
--
--
--bool QtLockedFile::lock(LockMode mode, bool block)
--{
--    if (!isOpen()) {
--        qWarning("QtLockedFile::lock(): file is not opened");
--        return false;
--    }
--
--    if (mode == NoLock)
--        return unlock();
--
--    if (mode == m_lock_mode)
--        return true;
--
--    if (m_lock_mode != NoLock)
--        unlock();
--
--    if (!wmutex && !(wmutex = getMutexHandle(-1, true)))
--        return false;
--
--    if (!waitMutex(wmutex, block))
--        return false;
--
--    if (mode == ReadLock) {
--        int idx = 0;
--        for (; idx < MAX_READERS; idx++) {
--            rmutex = getMutexHandle(idx, false);
--            if (!rmutex || waitMutex(rmutex, false))
--                break;
--            CloseHandle(rmutex);
--        }
--        bool ok = true;
--        if (idx >= MAX_READERS) {
--            qWarning("QtLockedFile::lock(): too many readers");
--            rmutex = 0;
--            ok = false;
--        }
--        else if (!rmutex) {
--            rmutex = getMutexHandle(idx, true);
--            if (!rmutex || !waitMutex(rmutex, false))
--                ok = false;
--        }
--        if (!ok && rmutex) {
--            CloseHandle(rmutex);
--            rmutex = 0;
--        }
--        ReleaseMutex(wmutex);
--        if (!ok)
--            return false;
--    }
--    else {
--        Q_ASSERT(rmutexes.isEmpty());
--        for (int i = 0; i < MAX_READERS; i++) {
--            Qt::HANDLE mutex = getMutexHandle(i, false);
--            if (mutex)
--                rmutexes.append(mutex);
--        }
--        if (rmutexes.size()) {
--            DWORD res = WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(),
--                                               TRUE, block ? INFINITE : 0);
--            if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) {
--                if (res != WAIT_TIMEOUT)
--                    qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed");
--                m_lock_mode = WriteLock;  // trick unlock() to clean up - semiyucky
--                unlock();
--                return false;
--            }
--        }
--    }
--
--    m_lock_mode = mode;
--    return true;
--}
--
--bool QtLockedFile::unlock()
--{
--    if (!isOpen()) {
--        qWarning("QtLockedFile::unlock(): file is not opened");
--        return false;
--    }
--
--    if (!isLocked())
--        return true;
--
--    if (m_lock_mode == ReadLock) {
--        ReleaseMutex(rmutex);
--        CloseHandle(rmutex);
--        rmutex = 0;
--    }
--    else {
--        foreach(Qt::HANDLE mutex, rmutexes) {
--            ReleaseMutex(mutex);
--            CloseHandle(mutex);
--        }
--        rmutexes.clear();
--        ReleaseMutex(wmutex);
--    }
--
--    m_lock_mode = QtLockedFile::NoLock;
--    return true;
--}
--
--QtLockedFile::~QtLockedFile()
--{
--    if (isOpen())
--        unlock();
--    if (wmutex)
--        CloseHandle(wmutex);
--}
-diff --git a/qtsingleapplication/src/qtsingleapplication.cpp b/qtsingleapplication/src/qtsingleapplication.cpp
-deleted file mode 100644
-index a6f4516..0000000
---- a/qtsingleapplication/src/qtsingleapplication.cpp
-+++ /dev/null
-@@ -1,310 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--
--#include "qtsingleapplication.h"
--#include "qtlocalpeer.h"
--#include <QWidget>
--
--
--/*!
--    \class QtSingleApplication qtsingleapplication.h
--    \brief The QtSingleApplication class provides an API to detect and
--    communicate with running instances of an application.
--
--    This class allows you to create applications where only one
--    instance should be running at a time. I.e., if the user tries to
--    launch another instance, the already running instance will be
--    activated instead. Another usecase is a client-server system,
--    where the first started instance will assume the role of server,
--    and the later instances will act as clients of that server.
--
--    By default, the full path of the executable file is used to
--    determine whether two processes are instances of the same
--    application. You can also provide an explicit identifier string
--    that will be compared instead.
--
--    The application should create the QtSingleApplication object early
--    in the startup phase, and call isRunning() to find out if another
--    instance of this application is already running. If isRunning()
--    returns false, it means that no other instance is running, and
--    this instance has assumed the role as the running instance. In
--    this case, the application should continue with the initialization
--    of the application user interface before entering the event loop
--    with exec(), as normal.
--
--    The messageReceived() signal will be emitted when the running
--    application receives messages from another instance of the same
--    application. When a message is received it might be helpful to the
--    user to raise the application so that it becomes visible. To
--    facilitate this, QtSingleApplication provides the
--    setActivationWindow() function and the activateWindow() slot.
--
--    If isRunning() returns true, another instance is already
--    running. It may be alerted to the fact that another instance has
--    started by using the sendMessage() function. Also data such as
--    startup parameters (e.g. the name of the file the user wanted this
--    new instance to open) can be passed to the running instance with
--    this function. Then, the application should terminate (or enter
--    client mode).
--
--    If isRunning() returns true, but sendMessage() fails, that is an
--    indication that the running instance is frozen.
--
--    Here's an example that shows how to convert an existing
--    application to use QtSingleApplication. It is very simple and does
--    not make use of all QtSingleApplication's functionality (see the
--    examples for that).
--
--    \code
--    // Original
--    int main(int argc, char **argv)
--    {
--        QApplication app(argc, argv);
--
--        MyMainWidget mmw;
--        mmw.show();
--        return app.exec();
--    }
--
--    // Single instance
--    int main(int argc, char **argv)
--    {
--        QtSingleApplication app(argc, argv);
--
--        if (app.isRunning())
--            return !app.sendMessage(someDataString);
--
--        MyMainWidget mmw;
--        app.setActivationWindow(&mmw);
--        mmw.show();
--        return app.exec();
--    }
--    \endcode
--
--    Once this QtSingleApplication instance is destroyed (normally when
--    the process exits or crashes), when the user next attempts to run the
--    application this instance will not, of course, be encountered. The
--    next instance to call isRunning() or sendMessage() will assume the
--    role as the new running instance.
--
--    For console (non-GUI) applications, QtSingleCoreApplication may be
--    used instead of this class, to avoid the dependency on the QtGui
--    library.
--
--    \sa QtSingleCoreApplication
--*/
--
--
--void QtSingleApplication::sysInit(const QString &appId)
--{
--    actWin = 0;
--    peer = new QtLocalPeer(this, appId);
--    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
--}
--
--
--/*!
--    Creates a QtSingleApplication object. The application identifier
--    will be QCoreApplication::applicationFilePath(). \a argc, \a
--    argv, and \a GUIenabled are passed on to the QAppliation constructor.
--
--    If you are creating a console application (i.e. setting \a
--    GUIenabled to false), you may consider using
--    QtSingleCoreApplication instead.
--*/
--
--QtSingleApplication::QtSingleApplication(int &argc, char **argv, bool GUIenabled)
--    : QApplication(argc, argv, GUIenabled)
--{
--    sysInit();
--}
--
--
--/*!
--    Creates a QtSingleApplication object with the application
--    identifier \a appId. \a argc and \a argv are passed on to the
--    QAppliation constructor.
--*/
--
--QtSingleApplication::QtSingleApplication(const QString &appId, int &argc, char **argv)
--    : QApplication(argc, argv)
--{
--    sysInit(appId);
--}
--
--#if QT_VERSION < 0x050000
--
--/*!
--    Creates a QtSingleApplication object. The application identifier
--    will be QCoreApplication::applicationFilePath(). \a argc, \a
--    argv, and \a type are passed on to the QAppliation constructor.
--*/
--QtSingleApplication::QtSingleApplication(int &argc, char **argv, Type type)
--    : QApplication(argc, argv, type)
--{
--    sysInit();
--}
--
--
--#  if defined(Q_WS_X11)
--/*!
--  Special constructor for X11, ref. the documentation of
--  QApplication's corresponding constructor. The application identifier
--  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
--  and \a cmap are passed on to the QApplication constructor.
--*/
--QtSingleApplication::QtSingleApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
--    : QApplication(dpy, visual, cmap)
--{
--    sysInit();
--}
--
--/*!
--  Special constructor for X11, ref. the documentation of
--  QApplication's corresponding constructor. The application identifier
--  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
--  argv, \a visual, and \a cmap are passed on to the QApplication
--  constructor.
--*/
--QtSingleApplication::QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
--    : QApplication(dpy, argc, argv, visual, cmap)
--{
--    sysInit();
--}
--
--/*!
--  Special constructor for X11, ref. the documentation of
--  QApplication's corresponding constructor. The application identifier
--  will be \a appId. \a dpy, \a argc, \a
--  argv, \a visual, and \a cmap are passed on to the QApplication
--  constructor.
--*/
--QtSingleApplication::QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
--    : QApplication(dpy, argc, argv, visual, cmap)
--{
--    sysInit(appId);
--}
--#  endif // Q_WS_X11
--#endif // QT_VERSION < 0x050000
--
--
--/*!
--    Returns true if another instance of this application is running;
--    otherwise false.
--
--    This function does not find instances of this application that are
--    being run by a different user (on Windows: that are running in
--    another session).
--
--    \sa sendMessage()
--*/
--
--bool QtSingleApplication::isRunning()
--{
--    return peer->isClient();
--}
--
--
--/*!
--    Tries to send the text \a message to the currently running
--    instance. The QtSingleApplication object in the running instance
--    will emit the messageReceived() signal when it receives the
--    message.
--
--    This function returns true if the message has been sent to, and
--    processed by, the current instance. If there is no instance
--    currently running, or if the running instance fails to process the
--    message within \a timeout milliseconds, this function return false.
--
--    \sa isRunning(), messageReceived()
--*/
--bool QtSingleApplication::sendMessage(const QString &message, int timeout)
--{
--    return peer->sendMessage(message, timeout);
--}
--
--
--/*!
--    Returns the application identifier. Two processes with the same
--    identifier will be regarded as instances of the same application.
--*/
--QString QtSingleApplication::id() const
--{
--    return peer->applicationId();
--}
--
--
--/*!
--  Sets the activation window of this application to \a aw. The
--  activation window is the widget that will be activated by
--  activateWindow(). This is typically the application's main window.
--
--  If \a activateOnMessage is true (the default), the window will be
--  activated automatically every time a message is received, just prior
--  to the messageReceived() signal being emitted.
--
--  \sa activateWindow(), messageReceived()
--*/
--
--void QtSingleApplication::setActivationWindow(QWidget* aw, bool activateOnMessage)
--{
--    actWin = aw;
--    if (activateOnMessage)
--        connect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
--    else
--        disconnect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
--}
--
--
--/*!
--    Returns the applications activation window if one has been set by
--    calling setActivationWindow(), otherwise returns 0.
--
--    \sa setActivationWindow()
--*/
--QWidget* QtSingleApplication::activationWindow() const
--{
--    return actWin;
--}
--
--
--/*!
--  De-minimizes, raises, and activates this application's activation window.
--  This function does nothing if no activation window has been set.
--
--  This is a convenience function to show the user that this
--  application instance has been activated when he has tried to start
--  another instance.
--
--  This function should typically be called in response to the
--  messageReceived() signal. By default, that will happen
--  automatically, if an activation window has been set.
--
--  \sa setActivationWindow(), messageReceived(), initialize()
--*/
--void QtSingleApplication::activateWindow()
--{
--    if (actWin) {
--        actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized);
--        actWin->raise();
--        actWin->activateWindow();
--    }
--}
--
--
--/*!
--    \fn void QtSingleApplication::messageReceived(const QString& message)
--
--    This signal is emitted when the current instance receives a \a
--    message from another instance of this application.
--
--    \sa sendMessage(), setActivationWindow(), activateWindow()
--*/
--
--
--/*!
--    \fn void QtSingleApplication::initialize(bool dummy = true)
--
--    \obsolete
--*/
-diff --git a/qtsingleapplication/src/qtsingleapplication.h b/qtsingleapplication/src/qtsingleapplication.h
-deleted file mode 100644
-index f8f6e88..0000000
---- a/qtsingleapplication/src/qtsingleapplication.h
-+++ /dev/null
-@@ -1,68 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#ifndef QTSINGLEAPPLICATION_H
--#define QTSINGLEAPPLICATION_H
--
--#include <QApplication>
--
--class QtLocalPeer;
--
--#if defined(Q_OS_WIN)
--#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
--#    define QT_QTSINGLEAPPLICATION_EXPORT
--#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
--#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
--#      undef QT_QTSINGLEAPPLICATION_EXPORT
--#    endif
--#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
--#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
--#    undef QT_QTSINGLEAPPLICATION_EXPORT
--#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
--#  endif
--#else
--#  define QT_QTSINGLEAPPLICATION_EXPORT
--#endif
--
--class QT_QTSINGLEAPPLICATION_EXPORT QtSingleApplication : public QApplication
--{
--    Q_OBJECT
--
--public:
--    QtSingleApplication(int &argc, char **argv, bool GUIenabled = true);
--    QtSingleApplication(const QString &id, int &argc, char **argv);
--#if QT_VERSION < 0x050000
--    QtSingleApplication(int &argc, char **argv, Type type);
--#  if defined(Q_WS_X11)
--    QtSingleApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
--    QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
--    QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
--#  endif // Q_WS_X11
--#endif // QT_VERSION < 0x050000
--
--    bool isRunning();
--    QString id() const;
--
--    void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
--    QWidget* activationWindow() const;
--
--    // Obsolete:
--    void initialize(bool dummy = true)
--        { isRunning(); Q_UNUSED(dummy) }
--
--public Q_SLOTS:
--    bool sendMessage(const QString &message, int timeout = 5000);
--    void activateWindow();
--
--
--Q_SIGNALS:
--    void messageReceived(const QString &message);
--
--
--private:
--    void sysInit(const QString &appId = QString());
--    QtLocalPeer *peer;
--    QWidget *actWin;
--};
--
--#endif // QTSINGLEAPPLICATION_H
-diff --git a/qtsingleapplication/src/qtsingleapplication.pri b/qtsingleapplication/src/qtsingleapplication.pri
-deleted file mode 100644
-index 6f2bced..0000000
---- a/qtsingleapplication/src/qtsingleapplication.pri
-+++ /dev/null
-@@ -1,17 +0,0 @@
--include(../common.pri)
--INCLUDEPATH += $$PWD
--DEPENDPATH += $$PWD
--QT *= network
--greaterThan(QT_MAJOR_VERSION, 4): QT *= widgets
--
--qtsingleapplication-uselib:!qtsingleapplication-buildlib {
--    LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
--} else {
--    SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
--    HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
--}
--
--win32 {
--    contains(TEMPLATE, lib):contains(CONFIG, shared):DEFINES += QT_QTSINGLEAPPLICATION_EXPORT
--    else:qtsingleapplication-uselib:DEFINES += QT_QTSINGLEAPPLICATION_IMPORT
--}
-diff --git a/qtsingleapplication/src/qtsinglecoreapplication.cpp b/qtsingleapplication/src/qtsinglecoreapplication.cpp
-deleted file mode 100644
-index a3e2b3a..0000000
---- a/qtsingleapplication/src/qtsinglecoreapplication.cpp
-+++ /dev/null
-@@ -1,112 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--
--#include "qtsinglecoreapplication.h"
--#include "qtlocalpeer.h"
--
--/*!
--    \class QtSingleCoreApplication qtsinglecoreapplication.h
--    \brief A variant of the QtSingleApplication class for non-GUI applications.
--
--    This class is a variant of QtSingleApplication suited for use in
--    console (non-GUI) applications. It is an extension of
--    QCoreApplication (instead of QApplication). It does not require
--    the QtGui library.
--
--    The API and usage is identical to QtSingleApplication, except that
--    functions relating to the "activation window" are not present, for
--    obvious reasons. Please refer to the QtSingleApplication
--    documentation for explanation of the usage.
--
--    A QtSingleCoreApplication instance can communicate to a
--    QtSingleApplication instance if they share the same application
--    id. Hence, this class can be used to create a light-weight
--    command-line tool that sends commands to a GUI application.
--
--    \sa QtSingleApplication
--*/
--
--/*!
--    Creates a QtSingleCoreApplication object. The application identifier
--    will be QCoreApplication::applicationFilePath(). \a argc and \a
--    argv are passed on to the QCoreAppliation constructor.
--*/
--
--QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv)
--    : QCoreApplication(argc, argv)
--{
--    peer = new QtLocalPeer(this);
--    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
--}
--
--
--/*!
--    Creates a QtSingleCoreApplication object with the application
--    identifier \a appId. \a argc and \a argv are passed on to the
--    QCoreAppliation constructor.
--*/
--QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId, int &argc, char **argv)
--    : QCoreApplication(argc, argv)
--{
--    peer = new QtLocalPeer(this, appId);
--    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
--}
--
--
--/*!
--    Returns true if another instance of this application is running;
--    otherwise false.
--
--    This function does not find instances of this application that are
--    being run by a different user (on Windows: that are running in
--    another session).
--
--    \sa sendMessage()
--*/
--
--bool QtSingleCoreApplication::isRunning()
--{
--    return peer->isClient();
--}
--
--
--/*!
--    Tries to send the text \a message to the currently running
--    instance. The QtSingleCoreApplication object in the running instance
--    will emit the messageReceived() signal when it receives the
--    message.
--
--    This function returns true if the message has been sent to, and
--    processed by, the current instance. If there is no instance
--    currently running, or if the running instance fails to process the
--    message within \a timeout milliseconds, this function return false.
--
--    \sa isRunning(), messageReceived()
--*/
--
--bool QtSingleCoreApplication::sendMessage(const QString &message, int timeout)
--{
--    return peer->sendMessage(message, timeout);
--}
--
--
--/*!
--    Returns the application identifier. Two processes with the same
--    identifier will be regarded as instances of the same application.
--*/
--
--QString QtSingleCoreApplication::id() const
--{
--    return peer->applicationId();
--}
--
--
--/*!
--    \fn void QtSingleCoreApplication::messageReceived(const QString& message)
--
--    This signal is emitted when the current instance receives a \a
--    message from another instance of this application.
--
--    \sa sendMessage()
--*/
-diff --git a/qtsingleapplication/src/qtsinglecoreapplication.h b/qtsingleapplication/src/qtsinglecoreapplication.h
-deleted file mode 100644
-index 1272589..0000000
---- a/qtsingleapplication/src/qtsinglecoreapplication.h
-+++ /dev/null
-@@ -1,34 +0,0 @@
--// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
--// SPDX-License-Identifier: BSD-3-Clause
--
--#ifndef QTSINGLECOREAPPLICATION_H
--#define QTSINGLECOREAPPLICATION_H
--
--#include <QCoreApplication>
--
--class QtLocalPeer;
--
--class QtSingleCoreApplication : public QCoreApplication
--{
--    Q_OBJECT
--
--public:
--    QtSingleCoreApplication(int &argc, char **argv);
--    QtSingleCoreApplication(const QString &id, int &argc, char **argv);
--
--    bool isRunning();
--    QString id() const;
--
--public Q_SLOTS:
--    bool sendMessage(const QString &message, int timeout = 5000);
--
--
--Q_SIGNALS:
--    void messageReceived(const QString &message);
--
--
--private:
--    QtLocalPeer* peer;
--};
--
--#endif // QTSINGLECOREAPPLICATION_H
-diff --git a/qtsingleapplication/src/qtsinglecoreapplication.pri b/qtsingleapplication/src/qtsinglecoreapplication.pri
-deleted file mode 100644
-index d2d6cc3..0000000
---- a/qtsingleapplication/src/qtsinglecoreapplication.pri
-+++ /dev/null
-@@ -1,10 +0,0 @@
--INCLUDEPATH	+= $$PWD
--DEPENDPATH      += $$PWD
--HEADERS		+= $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
--SOURCES		+= $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
--
--QT *= network
--
--win32:contains(TEMPLATE, lib):contains(CONFIG, shared) {
--    DEFINES += QT_QTSINGLECOREAPPLICATION_EXPORT=__declspec(dllexport)
--}
-diff --git a/third-party/qtsingleapplication/CMakeLists.txt b/third-party/qtsingleapplication/CMakeLists.txt
-new file mode 100644
-index 0000000..0a4b452
---- /dev/null
-+++ b/third-party/qtsingleapplication/CMakeLists.txt
-@@ -0,0 +1,13 @@
-+cmake_minimum_required(VERSION 3.16)
-+project(qtsingleguiapplication)
-+
-+find_package(Qt5 COMPONENTS
-+        Core Gui Network
-+        REQUIRED)
-+
-+include_directories(src)
-+set(SRCS src/qtsingleguiapplication.h src/qtsingleguiapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
-+
-+add_library(${PROJECT_NAME} STATIC ${SRCS})
-+target_include_directories(${PROJECT_NAME} PRIVATE src)
-+target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Network)
-diff --git a/third-party/qtsingleapplication/INSTALL.TXT b/third-party/qtsingleapplication/INSTALL.TXT
-new file mode 100644
-index 0000000..bbb74a9
---- /dev/null
-+++ b/third-party/qtsingleapplication/INSTALL.TXT
-@@ -0,0 +1,254 @@
-+INSTALLATION INSTRUCTIONS
-+
-+These instructions refer to the package you are installing as
-+some-package.tar.gz or some-package.zip. The .zip file is intended for use
-+on Windows.
-+
-+The directory you choose for the installation will be referred to as
-+your-install-dir.
-+
-+Note to Qt Visual Studio Integration users: In the instructions below,
-+instead of building from command line with nmake, you can use the menu
-+command 'Qt->Open Solution from .pro file' on the .pro files in the
-+example and plugin directories, and then build from within Visual
-+Studio.
-+
-+Unpacking and installation
-+--------------------------
-+
-+1.  Unpacking the archive (if you have not done so already).
-+
-+    On Unix and Mac OS X (in a terminal window):
-+
-+	cd your-install-dir
-+	gunzip some-package.tar.gz
-+	tar xvf some-package.tar
-+
-+    This creates the subdirectory some-package containing the files.
-+
-+    On Windows:
-+
-+    Unpack the .zip archive by right-clicking it in explorer and
-+    choosing "Extract All...". If your version of Windows does not
-+    have zip support, you can use the infozip tools available
-+    from www.info-zip.org.
-+
-+    If you are using the infozip tools (in a command prompt window):
-+	cd your-install-dir
-+	unzip some-package.zip
-+
-+2.  Configuring the package.
-+
-+    The configure script is called "configure" on unix/mac and
-+    "configure.bat" on Windows. It should be run from a command line
-+    after cd'ing to the package directory. 
-+
-+    You can choose whether you want to use the component by including
-+    its source code directly into your project, or build the component
-+    as a dynamic shared library (DLL) that is loaded into the
-+    application at run-time. The latter may be preferable for
-+    technical or licensing (LGPL) reasons. If you want to build a DLL,
-+    run the configure script with the argument "-library". Also see
-+    the note about usage below.
-+
-+    (Components that are Qt plugins, e.g. styles and image formats,
-+    are by default built as a plugin DLL.)
-+
-+    The configure script will prompt you in some cases for further
-+    information. Answer these questions and carefully read the license text
-+    before accepting the license conditions. The package cannot be used if
-+    you do not accept the license conditions.
-+
-+3.  Building the component and examples (when required).
-+
-+    If a DLL is to be built, or if you would like to build the
-+    examples, next give the commands
-+
-+        qmake
-+        make          [or nmake if your are using Microsoft Visual C++]
-+
-+    The example program(s) can be found in the directory called
-+    "examples" or "example".
-+
-+    Components that are Qt plugins, e.g. styles and image formats, are
-+    ready to be used as soon as they are built, so the rest of this
-+    installation instruction can be skipped.
-+
-+4.  Building the Qt Designer plugin (optional).
-+
-+    Some of the widget components are provided with plugins for Qt
-+    Designer. To build and install the plugin, cd into the
-+    some-package/plugin directory and give the commands
-+
-+	qmake
-+	make           [or nmake if your are using Microsoft Visual C++]
-+
-+    Restart Qt Designer to make it load the new widget plugin.
-+
-+    Note: If you are using the built-in Qt Designer from the Qt Visual
-+    Studio Integration, you will need to manually copy the plugin DLL
-+    file, i.e. copy
-+	%QTDIR%\plugins\designer\some-component.dll 
-+    to the Qt Visual Studio Integration plugin path, typically:
-+	C:\Program Files\Trolltech\Qt VS Integration\plugins
-+
-+    Note: If you for some reason are using a Qt Designer that is built
-+    in debug mode, you will need to build the plugin in debug mode
-+    also. Edit the file plugin.pro in the plugin directory, changing
-+    'release' to 'debug' in the CONFIG line, before running qmake.
-+
-+
-+
-+Solutions components are intended to be used directly from the package
-+directory during development, so there is no 'make install' procedure.
-+
-+
-+Using a component in your project
-+---------------------------------
-+
-+To use this component in your project, add the following line to the
-+project's .pro file (or do the equivalent in your IDE):
-+
-+    include(your-install-dir/some-package/src/some-package.pri)
-+
-+This adds the package's sources and headers to the SOURCES and HEADERS
-+project variables respectively (or, if the component has been
-+configured as a DLL, it adds that library to the LIBS variable), and
-+updates INCLUDEPATH to contain the package's src
-+directory. Additionally, the .pri file may include some dependencies
-+needed by the package.
-+
-+To include a header file from the package in your sources, you can now
-+simply use:
-+
-+    #include <SomeClass>
-+
-+or alternatively, in pre-Qt 4 style:
-+
-+    #include <some-class.h>
-+
-+Refer to the documentation to see the classes and headers this
-+components provides.
-+
-+
-+
-+Install documentation (optional)
-+--------------------------------
-+
-+The HTML documentation for the package's classes is located in the
-+your-install-dir/some-package/doc/html/index.html. You can open this
-+file and read the documentation with any web browser.
-+
-+To install the documentation into Qt Assistant (for Qt version 4.4 and
-+later):
-+
-+1.  In Assistant, open the Edit->Preferences dialog and choose the
-+    Documentation tab. Click the Add... button and select the file
-+       your-install-dir/some-package/doc/html/some-package.qch
-+    
-+For Qt versions prior to 4.4, do instead the following:
-+
-+1.  The directory your-install-dir/some-package/doc/html contains a
-+    file called some-package.dcf. Execute the following commands in a
-+    shell, command prompt or terminal window:
-+
-+	cd your-install-dir/some-package/doc/html/
-+	assistant -addContentFile some-package.dcf
-+
-+The next time you start Qt Assistant, you can access the package's
-+documentation.
-+
-+
-+Removing the documentation from assistant
-+-----------------------------------------
-+
-+If you have installed the documentation into Qt Assistant, and want to uninstall it, do as follows, for Qt version 4.4 and later:
-+
-+1.  In Assistant, open the Edit->Preferences dialog and choose the
-+    Documentation tab. In the list of Registered Documentation, select
-+    the item com.nokia.qtsolutions.some-package_version, and click
-+    the Remove button.
-+
-+For Qt versions prior to 4.4, do instead the following:
-+
-+1.  The directory your-install-dir/some-package/doc/html contains a
-+    file called some-package.dcf. Execute the following commands in a
-+    shell, command prompt or terminal window:
-+
-+	cd your-install-dir/some-package/doc/html/
-+	assistant -removeContentFile some-package.dcf
-+
-+
-+
-+Using the component as a DLL
-+----------------------------
-+
-+1. Normal components
-+
-+    The shared library (DLL) is built and placed in the
-+    some-package/lib directory. It is intended to be used directly
-+    from there during development. When appropriate, both debug and
-+    release versions are built, since the run-time linker will in some
-+    cases refuse to load a debug-built DLL into a release-built
-+    application or vice versa.
-+
-+    The following steps are taken by default to help the dynamic
-+    linker to locate the DLL at run-time (during development):
-+
-+    Unix: The some-package.pri file will add linker instructions to
-+    add the some-package/lib directory to the rpath of the
-+    executable. (When distributing, or if your system does not support
-+    rpath, you can copy the shared library to another place that is
-+    searched by the dynamic linker, e.g. the "lib" directory of your
-+    Qt installation.)
-+
-+    Mac: The full path to the library is hardcoded into the library
-+    itself, from where it is copied into the executable at link time,
-+    and ready by the dynamic linker at run-time. (When distributing,
-+    you will want to edit these hardcoded paths in the same way as for
-+    the Qt DLLs. Refer to the document "Deploying an Application on
-+    Mac OS X" in the Qt Reference Documentation.)
-+
-+    Windows: the .dll file(s) are copied into the "bin" directory of
-+    your Qt installation. The Qt installation will already have set up
-+    that directory to be searched by the dynamic linker.
-+
-+
-+2. Plugins
-+
-+    For Qt Solutions plugins (e.g. image formats), both debug and
-+    release versions of the plugin are built by default when
-+    appropriate, since in some cases the release Qt library will not
-+    load a debug plugin, and vice versa. The plugins are automatically
-+    copied into the plugins directory of your Qt installation when
-+    built, so no further setup is required.
-+
-+    Plugins may also be built statically, i.e. as a library that will be
-+    linked into your application executable, and so will not need to
-+    be redistributed as a separate plugin DLL to end users. Static
-+    building is required if Qt itself is built statically. To do it,
-+    just add "static" to the CONFIG variable in the plugin/plugin.pro
-+    file before building. Refer to the "Static Plugins" section in the
-+    chapter "How to Create Qt Plugins" for explanation of how to use a
-+    static plugin in your application. The source code of the example
-+    program(s) will also typically contain the relevant instructions
-+    as comments.
-+
-+
-+
-+Uninstalling
-+------------
-+
-+    The following command will remove any fils that have been
-+    automatically placed outside the package directory itself during
-+    installation and building
-+
-+	make distclean [or nmake if your are using Microsoft Visual C++]
-+
-+    If Qt Assistant documentation or Qt Designer plugins have been
-+    installed, they can be uninstalled manually, ref. above.
-+
-+
-+Enjoy! :)
-+
-+- The Qt Solutions Team.
-diff --git a/third-party/qtsingleapplication/README.TXT b/third-party/qtsingleapplication/README.TXT
-new file mode 100644
-index 0000000..06abb09
---- /dev/null
-+++ b/third-party/qtsingleapplication/README.TXT
-@@ -0,0 +1,33 @@
-+Qt Solutions Component: Single Application
-+
-+The QtSingleApplication component provides support for
-+applications that can be only started once per user.
-+
-+
-+
-+Version history:
-+
-+2.0: - Version 1.3 ported to Qt 4.
-+
-+2.1: - Fix compilation problem on Mac.
-+
-+2.2: - Really fix the Mac compilation problem.
-+     - Mac: fix crash due to wrong object releasing.
-+     - Mac: Fix memory leak.
-+
-+2.3: - Windows: Force creation of internal widget to make it work
-+     with Qt 4.2.
-+
-+2.4: - Fix the system for automatic window raising on message
-+     reception. NOTE: minor API change.
-+
-+2.5: - Mac: Fix isRunning() to work and report correctly.
-+
-+2.6: - - initialize() is now obsolete, no longer necessary to call
-+     it
-+     - - Fixed race condition where multiple instances migth be started
-+     - - QtSingleCoreApplication variant provided for non-GUI (console)
-+     usage
-+     - Complete reimplementation. Visible changes:
-+     - LGPL release.
-+
-diff --git a/third-party/qtsingleapplication/buildlib/buildlib.pro b/third-party/qtsingleapplication/buildlib/buildlib.pro
-new file mode 100644
-index 0000000..37dddcd
---- /dev/null
-+++ b/third-party/qtsingleapplication/buildlib/buildlib.pro
-@@ -0,0 +1,13 @@
-+TEMPLATE=lib
-+CONFIG += qt dll qtsingleapplication-buildlib
-+mac:CONFIG += absolute_library_soname
-+win32|mac:!wince*:!win32-msvc:!macx-xcode:CONFIG += debug_and_release build_all
-+include(../src/qtsingleapplication.pri)
-+TARGET = $$QTSINGLEAPPLICATION_LIBNAME
-+DESTDIR = $$QTSINGLEAPPLICATION_LIBDIR
-+win32 {
-+    DLLDESTDIR = $$[QT_INSTALL_BINS]
-+    QMAKE_DISTCLEAN += $$[QT_INSTALL_BINS]\\$${QTSINGLEAPPLICATION_LIBNAME}.dll
-+}
-+target.path = $$DESTDIR
-+INSTALLS += target
-diff --git a/third-party/qtsingleapplication/common.pri b/third-party/qtsingleapplication/common.pri
-new file mode 100644
-index 0000000..924c57c
---- /dev/null
-+++ b/third-party/qtsingleapplication/common.pri
-@@ -0,0 +1,14 @@
-+exists(config.pri):infile(config.pri, SOLUTIONS_LIBRARY, yes): CONFIG += qtsingleapplication-uselib
-+
-+TEMPLATE += fakelib
-+greaterThan(QT_MAJOR_VERSION, 5)|\
-+  if(equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 4))|\
-+  if(equals(QT_MAJOR_VERSION, 5):equals(QT_MINOR_VERSION, 4):greaterThan(QT_PATCH_VERSION, 1)) {
-+    QTSINGLEAPPLICATION_LIBNAME = $$qt5LibraryTarget(QtSolutions_SingleApplication-head)
-+} else {
-+    QTSINGLEAPPLICATION_LIBNAME = $$qtLibraryTarget(QtSolutions_SingleApplication-head)
-+}
-+TEMPLATE -= fakelib
-+
-+QTSINGLEAPPLICATION_LIBDIR = $$PWD/lib
-+unix:qtsingleapplication-uselib:!qtsingleapplication-buildlib:QMAKE_RPATHDIR += $$QTSINGLEAPPLICATION_LIBDIR
-diff --git a/third-party/qtsingleapplication/configure b/third-party/qtsingleapplication/configure
-new file mode 100755
-index 0000000..3c4edff
---- /dev/null
-+++ b/third-party/qtsingleapplication/configure
-@@ -0,0 +1,25 @@
-+#!/bin/sh
-+
-+if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
-+    echo "Usage: $0 [-library]"
-+    echo 
-+    echo "-library: Build the component as a dynamic library (DLL). Default is to"
-+    echo "          include the component source code directly in the application."
-+    echo 
-+    exit 0
-+fi
-+
-+rm -f config.pri
-+if [ "x$1" = "x-library" ]; then
-+    echo "Configuring to build this component as a dynamic library."
-+    echo "SOLUTIONS_LIBRARY = yes" > config.pri
-+fi
-+
-+echo
-+echo "This component is now configured."
-+echo
-+echo "To build the component library (if requested) and example(s),"
-+echo "run qmake and your make command."
-+echo
-+echo "To remove or reconfigure, run make distclean."
-+echo
-diff --git a/third-party/qtsingleapplication/configure.bat b/third-party/qtsingleapplication/configure.bat
-new file mode 100644
-index 0000000..2927549
---- /dev/null
-+++ b/third-party/qtsingleapplication/configure.bat
-@@ -0,0 +1,43 @@
-+:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+:: SPDX-License-Identifier: BSD-3-Clause
-+
-+@echo off
-+
-+rem
-+rem "Main"
-+rem
-+
-+if not "%1"=="" (
-+    if not "%1"=="-library" (
-+        call :PrintUsage
-+        goto EOF
-+    )
-+)
-+
-+if exist config.pri. del config.pri
-+if "%1"=="-library" (
-+    echo Configuring to build this component as a dynamic library.
-+    echo SOLUTIONS_LIBRARY = yes > config.pri
-+)
-+
-+echo .
-+echo This component is now configured.
-+echo .
-+echo To build the component library (if requested) and example(s),
-+echo run qmake and your make or nmake command.
-+echo .
-+echo To remove or reconfigure, run make (nmake) distclean.
-+echo .
-+goto EOF
-+
-+:PrintUsage
-+echo Usage: configure.bat [-library]
-+echo .
-+echo -library: Build the component as a dynamic library (DLL). Default is to
-+echo           include the component source directly in the application.
-+echo           A DLL may be preferable for technical or licensing (LGPL) reasons.
-+echo .
-+goto EOF
-+
-+
-+:EOF
-diff --git a/third-party/qtsingleapplication/doc/html/classic.css b/third-party/qtsingleapplication/doc/html/classic.css
-new file mode 100644
-index 0000000..b8cae8e
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/classic.css
-@@ -0,0 +1,284 @@
-+BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
-+  font-family: Arial, Geneva, Helvetica, sans-serif;
-+}
-+H1 {
-+  text-align: center;
-+  font-size: 160%;
-+}
-+H2 {
-+  font-size: 120%;
-+}
-+H3 {
-+  font-size: 100%;
-+}
-+
-+h3.fn,span.fn
-+{
-+  background-color: #eee;
-+  border-width: 1px;
-+  border-style: solid;
-+  border-color: #ddd;
-+  font-weight: bold;
-+  padding: 6px 0px 6px 10px;
-+  margin: 42px 0px 0px 0px;
-+}
-+
-+hr {
-+  border: 0;
-+  color: #a0a0a0;
-+  background-color: #ccc;
-+  height: 1px;
-+  width: 100%;
-+  text-align: left;
-+  margin: 34px 0px 34px 0px;
-+}
-+
-+table.valuelist {
-+	border-width: 1px 1px 1px 1px;
-+	border-style: solid;
-+	border-color: #dddddd;
-+	border-collapse: collapse;
-+	background-color: #f0f0f0;
-+}
-+
-+table.indextable {
-+	border-width: 1px 1px 1px 1px;
-+	border-style: solid;
-+	border-collapse: collapse;
-+	background-color: #f0f0f0;
-+    border-color:#555;
-+    font-size: 100%;
-+}
-+
-+table td.largeindex {
-+	border-width: 1px 1px 1px 1px;
-+	border-collapse: collapse;
-+	background-color: #f0f0f0;
-+    border-color:#555;
-+    font-size: 120%;
-+}
-+
-+table.valuelist th {
-+	border-width: 1px 1px 1px 2px;
-+	padding: 4px;
-+	border-style: solid;
-+	border-color: #666;
-+    color:white;
-+    background-color:#666;
-+}
-+
-+th.titleheader  {
-+	border-width: 1px 0px 1px 0px;
-+	padding: 2px;
-+	border-style: solid;
-+	border-color: #666;
-+    color:white;
-+    background-color:#555;
-+    background-image:url('images/gradient.png')};
-+    background-repeat: repeat-x;
-+    font-size: 100%;
-+}
-+
-+
-+th.largeheader {
-+	border-width: 1px 0px 1px 0px;
-+	padding: 4px;
-+	border-style: solid;
-+	border-color: #444;
-+    color:white;
-+    background-color:#555555;
-+    font-size: 120%;
-+}
-+
-+p {
-+
-+  margin-left: 4px;
-+  margin-top: 8px;
-+  margin-bottom: 8px;
-+}
-+
-+a:link
-+{
-+  color: #0046ad;
-+  text-decoration: none
-+}
-+
-+a:visited
-+{
-+  color: #672967;
-+  text-decoration: none
-+}
-+
-+a.obsolete
-+{
-+  color: #661100;
-+  text-decoration: none
-+}
-+
-+a.compat
-+{
-+  color: #661100;
-+  text-decoration: none
-+}
-+
-+a.obsolete:visited
-+{
-+  color: #995500;
-+  text-decoration: none
-+}
-+
-+a.compat:visited
-+{
-+  color: #995500;
-+  text-decoration: none
-+}
-+
-+body
-+{
-+  background: #ffffff;
-+  color: black
-+}
-+
-+table.generic, table.annotated
-+{
-+  border-width: 1px;
-+  border-color:#bbb;
-+  border-style:solid;  
-+  border-collapse:collapse;
-+}
-+
-+table td.memItemLeft {
-+  width: 180px;
-+  padding: 2px 0px 0px 8px;
-+  margin: 4px;
-+  border-width: 1px;
-+  border-color: #E0E0E0;
-+  border-style: none;
-+  font-size: 100%;
-+  white-space: nowrap
-+}
-+
-+table td.memItemRight {
-+  padding: 2px 8px 0px 8px;
-+  margin: 4px;
-+  border-width: 1px;
-+  border-color: #E0E0E0;
-+  border-style: none;
-+  font-size: 100%;
-+}
-+
-+table tr.odd {
-+  background: #f0f0f0;
-+  color: black;
-+}
-+
-+table tr.even {
-+  background: #e4e4e4;
-+  color: black;
-+}
-+
-+table.annotated th {
-+  padding: 3px;
-+  text-align: left
-+}
-+
-+table.annotated td {
-+  padding: 3px;
-+}
-+
-+table tr pre
-+{
-+  padding-top: 0px;
-+  padding-bottom: 0px;
-+  padding-left: 0px;
-+  padding-right: 0px;
-+  border: none;
-+  background: none
-+}
-+
-+tr.qt-style
-+{
-+  background: #96E066;
-+  color: black
-+}
-+
-+body pre
-+{
-+  padding: 0.2em;
-+  border: #e7e7e7 1px solid;
-+  background: #f1f1f1;
-+  color: black
-+}
-+
-+table tr.qt-code pre
-+{
-+  padding: 0.2em;
-+  border: #e7e7e7 1px solid;
-+  background: #f1f1f1;
-+  color: black
-+}
-+
-+span.preprocessor, span.preprocessor a
-+{
-+  color: darkblue;
-+}
-+
-+span.comment
-+{
-+  color: darkred;
-+  font-style: italic
-+}
-+
-+span.string,span.char
-+{
-+  color: darkgreen;
-+}
-+
-+.title
-+{
-+    text-align: center
-+}
-+
-+.subtitle
-+{
-+    font-size: 0.8em
-+}
-+
-+.small-subtitle
-+{
-+    font-size: 0.65em
-+}
-+
-+.qmlitem {
-+    padding: 0;
-+}
-+
-+.qmlname {
-+    white-space: nowrap;
-+}
-+
-+.qmltype {
-+    text-align: center;
-+    font-size: 160%;
-+}
-+
-+.qmlproto {
-+    background-color: #eee;
-+    border-width: 1px;
-+    border-style: solid;
-+    border-color: #ddd;
-+    font-weight: bold;
-+    padding: 6px 10px 6px 10px;
-+    margin: 42px 0px 0px 0px;
-+}
-+
-+.qmlreadonly {
-+    float: right;
-+    color: red
-+}
-+
-+.qmldoc {
-+}
-+
-+*.qmlitem p {
-+}
-diff --git a/third-party/qtsingleapplication/doc/html/images/qt-logo.png b/third-party/qtsingleapplication/doc/html/images/qt-logo.png
-new file mode 100644
-index 0000000..794162f
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/images/qt-logo.png
-@@ -0,0 +1,10 @@
-+�PNG
-+
-+���
IHDR���9���C�����:u���IDATx�b���?�������bh��������Jn�����Jn�����Jn�����Jn�����Jn�����Jn������ԡ� �Є����`�����r'Q���(
-+!!����N�����b�_���������p�����?�?F&���F�����������312�������G.�y����G&ޏ?�}�e��W��S��S����gb�����(~������™������t�齸���g�0s�Vv`fcd��������������Y8��E�$�xd�U��Uex�$xd9D�����Dr=#������������gdd|���U�ף�w9D�-���
-+2���b8�������������Ͽ���ebddc��eᔐ╗�S��W��S���caB�����#�������������cfd�]����-I�\_�20110`x����������z�������w�������������/�).�#'˯"ǯ*˫,�+'�)�����@lY��������@}��f��ۯ����ͼ��
-+2���@d���$��1�����H������������'�)&�#'ç,ϯ*˧,�#/�%��́�X�����������gfd�����O�X8Y9��s2��G�C�3�g@
fFff.���3������O�|����v��,�l<l|ܬ���5�
!��X������š�300|�����FFF"�,HpBJ����X8�8�����������w������|�1�0����J�ơ��!�?���-� Y�;�Sf��V�^z87}D:�����"6İ��������ǟo�߾���?7+?/�������##f���?#3�����������"����Pff&&���+q�:&[����	122|�����+��o<�x##;3'"����|����?Vf66fv�,�����"ǭ���ͼ�$��)9M,,L�҃��A�CX�_�Y!���c�G�^~}������_FF�������b�,����ョ��d/�����"��������|p����-�L�������?x�����ĭ&�o����;#3+ûW�n��7�l�_�渘�������W�������"٭��3�q0^?�C�Ieb^=###333���O&�4g��?��0����K�G�̲������gfbz��������,�=���J�����"٭LL��1?��-/8Q�[���?�6᫯O���̿_�:7>�%��������?fR���_�|bb`y�엉�3+ԇ�,̌,�4� ������"ͭ��3��2>{�E4�އ��������˯N���������Ԧ�+��������Q�efd���ϛ?6:&������Ǜ�?�|��������"=\��n���$����FFfF���/�<������/.���,�le```d`b``0���{HT�O؝�W�l<!���U��9(�b�>0�����"�`dd������f���cfbb`dx��՛o� y���AP�����,�,��eebW�a�á,�����Qܬ����L�L>�<�d158�����"!\��g`bb���?�7F]u� ��?�~������?�������x�����������!�������"1\�~|���U^\���������/V�������������׏_?p@J$OG���%/Z�-���1�����O�f�����������"9
��񟁙U�_��X�������׿����.ll����������������M�o>��5���Ll�l����������1�0m���00��w��TVx��O�Ú ��b������GB��8�Gt�Uմ�Xp�l��I����������I
-+� ���׶�R/���@2��Y{� ]���d9#u��l�e+�}�N6�������Xf�J�����"խ��������J�13�002³������@�K������"ŭ��z���o?�1000@{���l��Ͽ��`��?ï����2�������"��ecgd�����H�.fFf���������Ɇ��}���Ͽߌ����������"٭윌��y���0200��0�Ac�������<�\p�o�����/��.������"����?;#�ߛ�!����h�g�d����dd����\<|\��300<�|�?j��������"-��������U�������L9D�8E���
i���[ZP����?��z��5fF�6��?���o������"��b�')�~�����?3311�g���/���֯�����cz������߿��>��p��vf����L��~�g����'"������"٭���Qd�����'��i������`�����Ϳ'?�Hۅ�Ǟy�������?�200��� �%�)h��1�.�7?�����.�����"ͭ��3�2�����y�VfFfGyO���/���:�?�������LL�[�,���?/?����^}|��:`luX�-�t�N���X������"�������_Ck��Ƕ�>w��������:����7Wl�S�������ofF�cOv{����OD����7톚�����)*$���@d�����"�������7��$��1CRgɉi[���!�.f&v_#����������ɧ{='JX�X��c`a�g��պ�]R\��̅�?ӧ_�ᄏv�Ѧ��_�2��������"g|������f��ە�(�m��
)\!�&&&F������{������b�a���~>q�ci.�O?�������l���-������"s܅���Ǐ��<Ϟ���n%��h�m���)t�N���6����P��߿��0�H��~����̌,<l��	�|A�����"ӭ���+&�%���v��[7���wed����3�?D#���������gade`b��wh��I������"߭������Q�@���{���U�Rf������������/>�|�ןhm���F>���������1�:���������������19���_/ر����������cc��7k�䱞�]����ۯ������咒�Sa���������B[��?���|}kf��~�����?ɍkF�/�>9*�q�p��Q�������(
@�##ï��e���1|�QX�n���������_������	#ơ��p7���B]X?F������������[a��'���K�����+�
-+�q�������/̌,,L��L�����������7t������Dʡ�z
-+/�����#300��������V���nC����")"����/�?110q�p����￿�����l����_�GV�WN�OU�_UIPSCؐ���?�\e``�������=_�R(2r-d���������?ÿ_��������?+7�8��$���������$���+�:�xB��������VFn^�?����cbdd@�y��Ă������������f```ab�a�㔆L�)���J��sI�2��Ҥ!#3��������>�	�^��y^~o	�(��?+33d:���.c�f�L����(���H�*sJ`��Mg222�ڥ�����ž�����������15����,l����l�"<�<r�|*��jr�*�<
-+"\�]������D�t&V�������7'���f��g����UW�@�WY�WA�K�c��)`������"�ց�	s���?���v&������"�V����g�y�������"���������J�������Jn�����Jn�����Jn�����Jn�����Jn������Qqr�{������IEND�B`�
-\ No newline at end of file
-diff --git a/third-party/qtsingleapplication/doc/html/index.html b/third-party/qtsingleapplication/doc/html/index.html
-new file mode 100644
-index 0000000..af9dab1
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/index.html
-@@ -0,0 +1,48 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- index.qdoc -->
-+<head>
-+  <title>Single Application</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">Single Application<br /><span class="subtitle"></span>
-+</h1>
-+<a name="description"></a>
-+<h2>Description</h2>
-+<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> component provides support for applications that can be only started once per user.</p>
-+<p>For some applications it is useful or even critical that they are started only once by any user. Future attempts to start the application should activate any already running instance, and possibly perform requested actions, e.g&#x2e; loading a file, in that instance.</p>
-+<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> class provides an interface to detect a running instance, and to send command strings to that instance. For console (non-GUI) applications, the <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> variant is provided, which avoids dependency on <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a>.</p>
-+<a name="classes"></a>
-+<h2>Classes</h2>
-+<ul>
-+<li><a href="qtsingleapplication.html">QtSingleApplication</a></li>
-+<li><a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a></li>
-+</ul>
-+<a name="examples"></a>
-+<h2>Examples</h2>
-+<ul>
-+<li><a href="qtsingleapplication-example-trivial.html">A Trivial Example</a></li>
-+<li><a href="qtsingleapplication-example-loader.html">Loading Documents</a></li>
-+<li><a href="qtsinglecoreapplication-example-console.html">A Non-GUI Example</a></li>
-+</ul>
-+<a name="tested-platforms"></a>
-+<h2>Tested platforms</h2>
-+<ul>
-+<li>Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005</li>
-+<li>Qt 4.4, 4.5 / Linux / gcc</li>
-+<li>Qt 4.4, 4.5 / MacOS X 10.5 / gcc</li>
-+</ul>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html b/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
-new file mode 100644
-index 0000000..6a36632
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
-@@ -0,0 +1,175 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- loader.qdoc -->
-+<head>
-+  <title>Loading Documents</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">Loading Documents<br /><span class="subtitle"></span>
-+</h1>
-+<p>The application in this example loads or prints the documents passed as commandline parameters to further instances of this application.</p>
-+<pre><span class="comment"> /****************************************************************************
-+ **
-+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+ ** Contact: http://www.qt-project.org/legal
-+ **
-+ ** This file is part of the Qt Solutions component.
-+ **
-+ ** You may use this file under the terms of the BSD license as follows:
-+ **
-+ ** &quot;Redistribution and use in source and binary forms, with or without
-+ ** modification, are permitted provided that the following conditions are
-+ ** met:
-+ **   * Redistributions of source code must retain the above copyright
-+ **     notice, this list of conditions and the following disclaimer.
-+ **   * Redistributions in binary form must reproduce the above copyright
-+ **     notice, this list of conditions and the following disclaimer in
-+ **     the documentation and/or other materials provided with the
-+ **     distribution.
-+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-+ **     the names of its contributors may be used to endorse or promote
-+ **     products derived from this software without specific prior written
-+ **     permission.
-+ **
-+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-+ **
-+ ****************************************************************************/</span>
-+
-+ #include &lt;qtsingleapplication.h&gt;
-+ #include &lt;QtCore/QFile&gt;
-+ #include &lt;QtGui/QMainWindow&gt;
-+ #include &lt;QtGui/QPrinter&gt;
-+ #include &lt;QtGui/QPainter&gt;
-+ #include &lt;QtGui/QTextEdit&gt;
-+ #include &lt;QtGui/QMdiArea&gt;
-+ #include &lt;QtCore/QTextStream&gt;
-+
-+ class MainWindow : public QMainWindow
-+ {
-+     Q_OBJECT
-+ public:
-+     MainWindow();
-+
-+ public slots:
-+     void handleMessage(const QString&amp; message);
-+
-+ signals:
-+     void needToShow();
-+
-+ private:
-+     QMdiArea *workspace;
-+ };</pre>
-+<p>The user interface in this application is a <a href="http://qt.nokia.com/doc/4.6/qmainwindow.html">QMainWindow</a> subclass with a <a href="http://qt.nokia.com/doc/4.6/qmdiarea.html">QMdiArea</a> as the central widget. It implements a slot <tt>handleMessage()</tt> that will be connected to the messageReceived() signal of the <a href="qtsingleapplication.html">QtSingleApplication</a> class.</p>
-+<pre> MainWindow::MainWindow()
-+ {
-+     workspace = new QMdiArea(this);
-+
-+     setCentralWidget(workspace);
-+ }</pre>
-+<p>The <a href="http://qt.nokia.com/doc/4.6/designer-to-know.html">MainWindow</a> constructor creates a minimal user interface.</p>
-+<pre> void MainWindow::handleMessage(const QString&amp; message)
-+ {
-+     enum Action {
-+         Nothing,
-+         Open,
-+         Print
-+     } action;
-+
-+     action = Nothing;
-+     QString filename = message;
-+     if (message.toLower().startsWith(&quot;/print &quot;)) {
-+         filename = filename.mid(7);
-+         action = Print;
-+     } else if (!message.isEmpty()) {
-+         action = Open;
-+     }
-+     if (action == Nothing) {
-+         emit needToShow();
-+         return;
-+     }
-+
-+     QFile file(filename);
-+     QString contents;
-+     if (file.open(QIODevice::ReadOnly))
-+         contents = file.readAll();
-+     else
-+         contents = &quot;[[Error: Could not load file &quot; + filename + &quot;]]&quot;;
-+
-+     QTextEdit *view = new QTextEdit;
-+     view-&gt;setPlainText(contents);
-+
-+     switch(action) {</pre>
-+<p>The handleMessage() slot interprets the message passed in as a filename that can be prepended with <i>/print</i> to indicate that the file should just be printed rather than loaded.</p>
-+<pre>     case Print:
-+         {
-+             QPrinter printer;
-+             view-&gt;print(&amp;printer);
-+             delete view;
-+         }
-+         break;
-+
-+     case Open:
-+         {
-+             workspace-&gt;addSubWindow(view);
-+             view-&gt;setWindowTitle(message);
-+             view-&gt;show();
-+             emit needToShow();
-+         }
-+         break;
-+     default:
-+         break;
-+     };
-+ }</pre>
-+<p>Loading the file will also activate the window.</p>
-+<pre> #include &quot;main.moc&quot;
-+
-+ int main(int argc, char **argv)
-+ {
-+     QtSingleApplication instance(&quot;File loader QtSingleApplication example&quot;, argc, argv);
-+     QString message;
-+     for (int a = 1; a &lt; argc; ++a) {
-+         message += argv[a];
-+         if (a &lt; argc-1)
-+             message += &quot; &quot;;
-+     }
-+
-+     if (instance.sendMessage(message))
-+         return 0;</pre>
-+<p>The <tt>main</tt> entry point function creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object, and creates a message to send to a running instance of the application. If the message was sent successfully the process exits immediately.</p>
-+<pre>     MainWindow mw;
-+     mw.handleMessage(message);
-+     mw.show();
-+
-+     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
-+                      &amp;mw, SLOT(handleMessage(const QString&amp;)));
-+
-+     instance.setActivationWindow(&amp;mw, false);
-+     QObject::connect(&amp;mw, SIGNAL(needToShow()), &amp;instance, SLOT(activateWindow()));
-+
-+     return instance.exec();
-+ }</pre>
-+<p>If the message could not be sent the application starts up. Note that <tt>false</tt> is passed to the call to setActivationWindow() to prevent automatic activation for every message received, e.g&#x2e; when the application should just print a file. Instead, the message handling function determines whether activation is requested, and signals that by emitting the needToShow() signal. This is then simply connected directly to <a href="qtsingleapplication.html">QtSingleApplication</a>'s activateWindow() slot.</p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html b/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
-new file mode 100644
-index 0000000..5e60cfa
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
-@@ -0,0 +1,101 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- trivial.qdoc -->
-+<head>
-+  <title>A Trivial Example</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">A Trivial Example<br /><span class="subtitle"></span>
-+</h1>
-+<p>The application in this example has a log-view that displays messages sent by further instances of the same application.</p>
-+<p>The example demonstrates the use of the <a href="qtsingleapplication.html">QtSingleApplication</a> class to detect and communicate with a running instance of the application using the sendMessage() API. The messageReceived() signal is used to display received messages in a <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a> log.</p>
-+<pre><span class="comment"> /****************************************************************************
-+ **
-+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+ ** Contact: http://www.qt-project.org/legal
-+ **
-+ ** This file is part of the Qt Solutions component.
-+ **
-+ ** You may use this file under the terms of the BSD license as follows:
-+ **
-+ ** &quot;Redistribution and use in source and binary forms, with or without
-+ ** modification, are permitted provided that the following conditions are
-+ ** met:
-+ **   * Redistributions of source code must retain the above copyright
-+ **     notice, this list of conditions and the following disclaimer.
-+ **   * Redistributions in binary form must reproduce the above copyright
-+ **     notice, this list of conditions and the following disclaimer in
-+ **     the documentation and/or other materials provided with the
-+ **     distribution.
-+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-+ **     the names of its contributors may be used to endorse or promote
-+ **     products derived from this software without specific prior written
-+ **     permission.
-+ **
-+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-+ **
-+ ****************************************************************************/</span>
-+
-+ #include &lt;qtsingleapplication.h&gt;
-+ #include &lt;QtGui/QTextEdit&gt;
-+
-+ class TextEdit : public QTextEdit
-+ {
-+     Q_OBJECT
-+ public:
-+     TextEdit(QWidget *parent = 0)
-+         : QTextEdit(parent)
-+     {}
-+ public slots:
-+     void append(const QString &amp;str)
-+     {
-+         QTextEdit::append(str);
-+     }
-+ };
-+
-+ #include &quot;main.moc&quot;
-+
-+ int main(int argc, char **argv)
-+ {
-+     QtSingleApplication instance(argc, argv);</pre>
-+<p>The example has only the <tt>main</tt> entry point function. A <a href="qtsingleapplication.html">QtSingleApplication</a> object is created immediately.</p>
-+<pre>     if (instance.sendMessage(&quot;Wake up!&quot;))
-+         return 0;</pre>
-+<p>If another instance of this application is already running, sendMessage() will succeed, and this instance just exits immediately.</p>
-+<pre>     TextEdit logview;
-+     logview.setReadOnly(true);
-+     logview.show();</pre>
-+<p>Otherwise the instance continues as normal and creates the user interface.</p>
-+<pre>     instance.setActivationWindow(&amp;logview);
-+
-+     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
-+                      &amp;logview, SLOT(append(const QString&amp;)));
-+
-+     return instance.exec();</pre>
-+<p>The <tt>logview</tt> object is also set as the application's activation window. Every time a message is received, the window will be raised and activated automatically.</p>
-+<p>The messageReceived() signal is also connected to the <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a>'s append() slot. Every message received from further instances of this application will be displayed in the log.</p>
-+<p>Finally the event loop is entered.</p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html b/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html
-new file mode 100644
-index 0000000..c995ce3
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html
-@@ -0,0 +1,235 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- qtsingleapplication.cpp -->
-+<head>
-+  <title>List of All Members for QtSingleApplication</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">List of All Members for QtSingleApplication</h1>
-+<p>This is the complete list of members for <a href="qtsingleapplication.html">QtSingleApplication</a>, including inherited members.</p>
-+<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
-+<tr><td width="45%" valign="top"><ul>
-+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#ColorSpec-enum">ColorSpec</a></b></div></li>
-+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
-+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
-+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#QS60MainApplicationFactory-typedef">QS60MainApplicationFactory</a></b></div></li>
-+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a></b></div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp;, char **, bool )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp;, char **, Type )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display *, Qt::HANDLE, Qt::HANDLE )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display *, int &amp;, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display *, const QString &amp;, int, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#aboutQt">aboutQt</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const : QWidget *</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeModalWidget">activeModalWidget</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activePopupWidget">activePopupWidget</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeWindow">activeWindow</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#alert">alert</a></b> ( QWidget *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#allWidgets">allWidgets</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">autoMaximizeThreshold</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">autoSipEnabled</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#beep">beep</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#changeOverrideCursor">changeOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#clipboard">clipboard</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#closeAllWindows">closeAllWindows</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#colorSpec">colorSpec</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitData">commitData</a></b> ( QSessionManager &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitDataRequest">commitDataRequest</a></b> ( QSessionManager &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">cursorFlashTime</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktop">desktop</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktopSettingsAware">desktopSettingsAware</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">doubleClickInterval</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#event">event</a></b> ( QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusChanged">focusChanged</a></b> ( QWidget *, QWidget * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusWidget">focusWidget</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font">font</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-2">font</a></b> ( const QWidget * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-3">font</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontDatabaseChanged">fontDatabaseChanged</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontMetrics">fontMetrics</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">globalStrut</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#id">id</a></b> () const : QString</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#inputContext">inputContext</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isEffectEnabled">isEffectEnabled</a></b> ( Qt::UIEffect )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isLeftToRight">isLeftToRight</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isRightToLeft">isRightToLeft</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isSessionRestored">isSessionRestored</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputDirection">keyboardInputDirection</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">keyboardInputInterval</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputLocale">keyboardInputLocale</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardModifiers">keyboardModifiers</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keypadNavigationEnabled">keypadNavigationEnabled</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#lastWindowClosed">lastWindowClosed</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">layoutDirection</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#macEventFilter">macEventFilter</a></b> ( EventHandlerCallRef, EventRef )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#mouseButtons">mouseButtons</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#navigationMode">navigationMode</a></b> ()</div></li>
-+</ul></td><td valign="top"><ul>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#overrideCursor">overrideCursor</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette">palette</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-2">palette</a></b> ( const QWidget * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-3">palette</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">quitOnLastWindowClosed</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsDecoration">qwsDecoration</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsEventFilter">qwsEventFilter</a></b> ( QWSEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetCustomColors">qwsSetCustomColors</a></b> ( QRgb *, int, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration">qwsSetDecoration</a></b> ( QDecoration * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration-2">qwsSetDecoration</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#restoreOverrideCursor">restoreOverrideCursor</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveState">saveState</a></b> ( QSessionManager &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveStateRequest">saveStateRequest</a></b> ( QSessionManager &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionId">sessionId</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionKey">sessionKey</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget *, bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setActiveWindow">setActiveWindow</a></b> ( QWidget * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">setAutoMaximizeThreshold</a></b> ( const int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">setAutoSipEnabled</a></b> ( const bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setColorSpec">setColorSpec</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">setCursorFlashTime</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setDesktopSettingsAware">setDesktopSettingsAware</a></b> ( bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">setDoubleClickInterval</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setEffectEnabled">setEffectEnabled</a></b> ( Qt::UIEffect, bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setFont">setFont</a></b> ( const QFont &amp;, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">setGlobalStrut</a></b> ( const QSize &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setGraphicsSystem">setGraphicsSystem</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setInputContext">setInputContext</a></b> ( QInputContext * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">setKeyboardInputInterval</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">setLayoutDirection</a></b> ( Qt::LayoutDirection )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setNavigationMode">setNavigationMode</a></b> ( Qt::NavigationMode )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setOverrideCursor">setOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setPalette">setPalette</a></b> ( const QPalette &amp;, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">setQuitOnLastWindowClosed</a></b> ( bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">setStartDragDistance</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">setStartDragTime</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle">setStyle</a></b> ( QStyle * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle-2">setStyle</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">setStyleSheet</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">setWheelScrollLines</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">setWindowIcon</a></b> ( const QIcon &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">startDragDistance</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">startDragTime</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#style">style</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">styleSheet</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianEventFilter">symbianEventFilter</a></b> ( const QSymbianEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianProcessEvent">symbianProcessEvent</a></b> ( const QSymbianEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#syncX">syncX</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt">topLevelAt</a></b> ( const QPoint &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt-2">topLevelAt</a></b> ( int, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelWidgets">topLevelWidgets</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#type">type</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">wheelScrollLines</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt">widgetAt</a></b> ( const QPoint &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt-4">widgetAt</a></b> ( int, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">windowIcon</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11EventFilter">x11EventFilter</a></b> ( XEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11ProcessEvent">x11ProcessEvent</a></b> ( XEvent * )</div></li>
-+</ul>
-+</td></tr>
-+</table></p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html b/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
-new file mode 100644
-index 0000000..0d07dfa
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
-@@ -0,0 +1,31 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- qtsingleapplication.cpp -->
-+<head>
-+  <title>Obsolete Members for QtSingleApplication</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">Obsolete Members for QtSingleApplication</h1>
-+<p><b>The following class members are obsolete.</b> They are provided to keep old source code working. We strongly advise against using them in new code.</p>
-+<p><ul><li><a href="qtsingleapplication.html">QtSingleApplication class reference</a></li></ul></p>
-+<h2>Public Functions</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication-obsolete.html#initialize">initialize</a></b> ( bool <i>dummy</i> = true )&nbsp;&nbsp;<tt> (obsolete)</tt></td></tr>
-+</table>
-+<hr />
-+<h2>Member Function Documentation</h2>
-+<h3 class="fn"><a name="initialize"></a>void QtSingleApplication::initialize ( bool <i>dummy</i> = true )</h3>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf b/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf
-new file mode 100644
-index 0000000..d81f87f
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf
-@@ -0,0 +1,40 @@
-+<!DOCTYPE DCF>
-+<DCF ref="index.html" icon="qtsingleapplication.png" imagedir="../../gif" title="Qt Solutions: Single Application Documentation">
-+<section ref="classes.html" title="Classes">
-+    <section ref="qtsingleapplication.html" title="QtSingleApplication Class Reference">
-+        <keyword ref="qtsingleapplication.html">QtSingleApplication</keyword>
-+        <keyword ref="qtsingleapplication.html#activateWindow">activateWindow</keyword>
-+        <keyword ref="qtsingleapplication.html#activationWindow">activationWindow</keyword>
-+        <keyword ref="qtsingleapplication.html#id">id</keyword>
-+        <keyword ref="qtsingleapplication.html#isRunning">isRunning</keyword>
-+        <keyword ref="qtsingleapplication.html#messageReceived">messageReceived</keyword>
-+        <keyword ref="qtsingleapplication.html#sendMessage">sendMessage</keyword>
-+        <keyword ref="qtsingleapplication.html#setActivationWindow">setActivationWindow</keyword>
-+        <section ref="qtsingleapplication-members.html" title="List of all members"/>
-+        <section ref="qtsingleapplication-obsolete.html" title="Obsolete members"/>
-+    </section>
-+    <section ref="qtsinglecoreapplication.html" title="QtSingleCoreApplication Class Reference">
-+        <keyword ref="qtsinglecoreapplication.html">QtSingleCoreApplication</keyword>
-+        <keyword ref="qtsinglecoreapplication.html#id">id</keyword>
-+        <keyword ref="qtsinglecoreapplication.html#isRunning">isRunning</keyword>
-+        <keyword ref="qtsinglecoreapplication.html#messageReceived">messageReceived</keyword>
-+        <keyword ref="qtsinglecoreapplication.html#sendMessage">sendMessage</keyword>
-+        <section ref="qtsinglecoreapplication-members.html" title="List of all members"/>
-+    </section>
-+</section>
-+<section ref="overviews.html" title="Overviews">
-+    <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example">
-+        <keyword ref="qtsinglecoreapplication-example-console.html">A non-GUI example</keyword>
-+    </section>
-+    <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example">
-+        <keyword ref="qtsingleapplication-example-trivial.html">A Trivial Example</keyword>
-+    </section>
-+    <section ref="qtsingleapplication-example-loader.html" title="Loading Documents">
-+        <keyword ref="qtsingleapplication-example-loader.html">Loading Documents</keyword>
-+    </section>
-+    <section ref="index.html" title="Single Application">
-+        <keyword ref="index.html">Single Application</keyword>
-+    </section>
-+</section>
-+<section ref="examples.html" title="Tutorial &amp; Examples"/>
-+</DCF>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication.html b/third-party/qtsingleapplication/doc/html/qtsingleapplication.html
-new file mode 100644
-index 0000000..2754a3b
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication.html
-@@ -0,0 +1,162 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- qtsingleapplication.cpp -->
-+<head>
-+  <title>QtSingleApplication Class Reference</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">QtSingleApplication Class Reference</h1>
-+<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application. <a href="#details">More...</a></p>
-+<pre> #include &lt;QtSingleApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>.</p>
-+<ul>
-+<li><a href="qtsingleapplication-members.html">List of all members, including inherited members</a></li>
-+<li><a href="qtsingleapplication-obsolete.html">Obsolete members</a></li>
-+</ul>
-+<hr />
-+<a name="public-functions"></a>
-+<h2>Public Functions</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, Type <i>type</i> )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display * <i>dpy</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display * <i>dpy</i>, const QString &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">QWidget * </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#id">id</a></b> () const</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> ()</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget * <i>aw</i>, bool <i>activateOnMessage</i> = true )</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>16 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-functions">QApplication</a></li>
-+<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
-+</ul>
-+<hr />
-+<a name="public-slots"></a>
-+<h2>Public Slots</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>7 public slots inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-slots">QApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
-+</ul>
-+<hr />
-+<a name="signals"></a>
-+<h2>Signals</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>5 signals inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#signals">QApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
-+</ul>
-+<h3>Additional Inherited Members</h3>
-+<ul>
-+<li><div class="fn"></div>13 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#properties">QApplication</a></li>
-+<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
-+<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
-+<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
-+<li><div class="fn"></div>73 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#static-public-members">QApplication</a></li>
-+<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
-+<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
-+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#protected-functions">QApplication</a></li>
-+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
-+<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
-+<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
-+</ul>
-+<a name="details"></a>
-+<hr />
-+<h2>Detailed Description</h2>
-+<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application.</p>
-+<p>This class allows you to create applications where only one instance should be running at a time. I.e&#x2e;, if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server.</p>
-+<p>By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead.</p>
-+<p>The application should create the QtSingleApplication object early in the startup phase, and call <a href="qtsingleapplication.html#isRunning">isRunning</a>() to find out if another instance of this application is already running. If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. In this case, the application should continue with the initialization of the application user interface before entering the event loop with <a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a>(), as normal.</p>
-+<p>The <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal will be emitted when the running application receives messages from another instance of the same application. When a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>() function and the <a href="qtsingleapplication.html#activateWindow">activateWindow</a>() slot.</p>
-+<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, another instance is already running. It may be alerted to the fact that another instance has started by using the <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() function. Also data such as startup parameters (e.g&#x2e; the name of the file the user wanted this new instance to open) can be passed to the running instance with this function. Then, the application should terminate (or enter client mode).</p>
-+<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, but <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() fails, that is an indication that the running instance is frozen.</p>
-+<p>Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that).</p>
-+<pre><span class="comment"> // Original</span>
-+ int main(int argc, char **argv)
-+ {
-+     QApplication app(argc, argv);
-+
-+     MyMainWidget mmw;
-+     mmw.show();
-+     return app.exec();
-+ }
-+
-+<span class="comment"> // Single instance</span>
-+ int main(int argc, char **argv)
-+ {
-+     QtSingleApplication app(argc, argv);
-+
-+     if (app.isRunning())
-+         return !app.sendMessage(someDataString);
-+
-+     MyMainWidget mmw;
-+     app.setActivationWindow(&amp;mmw);
-+     mmw.show();
-+     return app.exec();
-+ }</pre>
-+<p>Once this QtSingleApplication instance is destroyed (normally when the process exits or crashes), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call <a href="qtsingleapplication.html#isRunning">isRunning</a>() or <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() will assume the role as the new running instance.</p>
-+<p>For console (non-GUI) applications, <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> may be used instead of this class, to avoid the dependency on the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
-+<p>See also <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>.</p>
-+<hr />
-+<h2>Member Function Documentation</h2>
-+<h3 class="fn"><a name="QtSingleApplication"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</h3>
-+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>GUIenabled</i> are passed on to the QAppliation constructor.</p>
-+<p>If you are creating a console application (i.e&#x2e; setting <i>GUIenabled</i> to false), you may consider using <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> instead.</p>
-+<h3 class="fn"><a name="QtSingleApplication-2"></a>QtSingleApplication::QtSingleApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QAppliation constructor.</p>
-+<h3 class="fn"><a name="QtSingleApplication-3"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a> <i>type</i> )</h3>
-+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>type</i> are passed on to the QAppliation constructor.</p>
-+<h3 class="fn"><a name="QtSingleApplication-4"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-+<h3 class="fn"><a name="QtSingleApplication-5"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-+<h3 class="fn"><a name="QtSingleApplication-6"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <i>appId</i>. <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-+<h3 class="fn"><a name="activateWindow"></a>void QtSingleApplication::activateWindow ()&nbsp;&nbsp;<tt> [slot]</tt></h3>
-+<p>De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set.</p>
-+<p>This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance.</p>
-+<p>This function should typically be called in response to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal. By default, that will happen automatically, if an activation window has been set.</p>
-+<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), <a href="qtsingleapplication.html#messageReceived">messageReceived</a>(), and <a href="qtsingleapplication-obsolete.html#initialize" class="obsolete">initialize</a>().</p>
-+<h3 class="fn"><a name="activationWindow"></a><a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * QtSingleApplication::activationWindow () const</h3>
-+<p>Returns the applications activation window if one has been set by calling <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), otherwise returns 0.</p>
-+<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>().</p>
-+<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleApplication::id () const</h3>
-+<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
-+<h3 class="fn"><a name="isRunning"></a>bool QtSingleApplication::isRunning ()</h3>
-+<p>Returns true if another instance of this application is running; otherwise false.</p>
-+<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
-+<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>().</p>
-+<h3 class="fn"><a name="messageReceived"></a>void QtSingleApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
-+<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
-+<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>(), <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), and <a href="qtsingleapplication.html#activateWindow">activateWindow</a>().</p>
-+<h3 class="fn"><a name="sendMessage"></a>bool QtSingleApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
-+<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsingleapplication.html">QtSingleApplication</a> object in the running instance will emit the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
-+<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
-+<p>See also <a href="qtsingleapplication.html#isRunning">isRunning</a>() and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
-+<h3 class="fn"><a name="setActivationWindow"></a>void QtSingleApplication::setActivationWindow ( <a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * <i>aw</i>, bool <i>activateOnMessage</i> = true )</h3>
-+<p>Sets the activation window of this application to <i>aw</i>. The activation window is the widget that will be activated by <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(). This is typically the application's main window.</p>
-+<p>If <i>activateOnMessage</i> is true (the default), the window will be activated automatically every time a message is received, just prior to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal being emitted.</p>
-+<p>See also <a href="qtsingleapplication.html#activationWindow">activationWindow</a>(), <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(), and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication.index b/third-party/qtsingleapplication/doc/html/qtsingleapplication.index
-new file mode 100644
-index 0000000..56052c2
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication.index
-@@ -0,0 +1,90 @@
-+<?xml version="1.0" encoding="UTF-8"?>
-+<!DOCTYPE QDOCINDEX>
-+<INDEX url="" title="Qt Solutions: Single Application Documentation" version="">
-+    <namespace access="public" threadsafety="unspecified" status="commendable" name="" href="" location="" module="">
-+        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" href="qtsinglecoreapplication.html" location="qtsinglecoreapplication.h" bases="QCoreApplication" module="">
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleCoreApplication(int &amp; argc, char ** argv)">
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication-2" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleCoreApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
-+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleCoreApplication::isRunning" href="qtsinglecoreapplication.html#isRunning" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleCoreApplication::id" href="qtsinglecoreapplication.html#id" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleCoreApplication::sendMessage" href="qtsinglecoreapplication.html#sendMessage" location="qtsinglecoreapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
-+                <parameter left="const QString &amp;" right="" name="message" default=""/>
-+                <parameter left="int" right="" name="timeout" default="5000"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleCoreApplication::messageReceived" href="qtsinglecoreapplication.html#messageReceived" location="qtsinglecoreapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
-+                <parameter left="const QString &amp;" right="" name="message" default=""/>
-+            </function>
-+        </class>
-+        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" href="qtsingleapplication.html" location="qtsingleapplication.h" bases="QApplication" module="">
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, bool GUIenabled)">
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+                <parameter left="bool" right="" name="GUIenabled" default="true"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-2" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
-+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-3" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="3" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, Type type)">
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+                <parameter left="Type" right="" name="type" default=""/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-4" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="4" type="" signature="QtSingleApplication(Display * dpy, Qt::HANDLE visual, Qt::HANDLE cmap)">
-+                <parameter left="Display *" right="" name="dpy" default=""/>
-+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-5" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="5" type="" signature="QtSingleApplication(Display * dpy, int &amp; argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
-+                <parameter left="Display *" right="" name="dpy" default=""/>
-+                <parameter left="int &amp;" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-6" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="6" type="" signature="QtSingleApplication(Display * dpy, const QString &amp; appId, int argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
-+                <parameter left="Display *" right="" name="dpy" default=""/>
-+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-+                <parameter left="int" right="" name="argc" default=""/>
-+                <parameter left="char **" right="" name="argv" default=""/>
-+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleApplication::isRunning" href="qtsingleapplication.html#isRunning" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleApplication::id" href="qtsingleapplication.html#id" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="setActivationWindow" fullname="QtSingleApplication::setActivationWindow" href="qtsingleapplication.html#setActivationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="setActivationWindow(QWidget * aw, bool activateOnMessage)">
-+                <parameter left="QWidget *" right="" name="aw" default=""/>
-+                <parameter left="bool" right="" name="activateOnMessage" default="true"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="activationWindow" fullname="QtSingleApplication::activationWindow" href="qtsingleapplication.html#activationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QWidget *" signature="activationWindow() const"/>
-+            <function access="public" threadsafety="unspecified" status="obsolete" name="initialize" fullname="QtSingleApplication::initialize" href="qtsingleapplication-obsolete.html#initialize" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="initialize(bool dummy)">
-+                <parameter left="bool" right="" name="dummy" default="true"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleApplication::sendMessage" href="qtsingleapplication.html#sendMessage" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
-+                <parameter left="const QString &amp;" right="" name="message" default=""/>
-+                <parameter left="int" right="" name="timeout" default="5000"/>
-+            </function>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="activateWindow" fullname="QtSingleApplication::activateWindow" href="qtsingleapplication.html#activateWindow" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="void" signature="activateWindow()"/>
-+            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleApplication::messageReceived" href="qtsingleapplication.html#messageReceived" location="qtsingleapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
-+                <parameter left="const QString &amp;" right="" name="message" default=""/>
-+            </function>
-+        </class>
-+        <page access="public" status="commendable" name="index.html" href="index.html" subtype="page" title="Single Application" fulltitle="Single Application" subtitle="" location="index.qdoc">
-+            <contents name="description" title="Description" level="1"/>
-+            <contents name="classes" title="Classes" level="1"/>
-+            <contents name="examples" title="Examples" level="1"/>
-+            <contents name="tested-platforms" title="Tested platforms" level="1"/>
-+        </page>
-+        <page access="public" status="commendable" name="qtsingleapplication-example-trivial.html" href="qtsingleapplication-example-trivial.html" subtype="page" title="A Trivial Example" fulltitle="A Trivial Example" subtitle="" location="trivial.qdoc"/>
-+        <page access="public" status="commendable" name="qtsinglecoreapplication-example-console.html" href="qtsinglecoreapplication-example-console.html" subtype="page" title="A non-GUI example" fulltitle="A non-GUI example" subtitle="" location="console.qdoc"/>
-+        <page access="public" status="commendable" name="qtsingleapplication-example-loader.html" href="qtsingleapplication-example-loader.html" subtype="page" title="Loading Documents" fulltitle="Loading Documents" subtitle="" location="loader.qdoc"/>
-+    </namespace>
-+</INDEX>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp b/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp
-new file mode 100644
-index 0000000..ff42d9d
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp
-@@ -0,0 +1,53 @@
-+<?xml version="1.0" encoding="UTF-8"?>
-+<QtHelpProject version="1.0">
-+    <namespace>com.nokia.qtsolutions.qtsingleapplication_head</namespace>
-+    <virtualFolder>qdoc</virtualFolder>
-+    <customFilter name="Qt Solutions: Single Application">
-+        <filterAttribute>qt</filterAttribute>
-+        <filterAttribute>solutions</filterAttribute>
-+        <filterAttribute>qtsingleapplication</filterAttribute>
-+    </customFilter>
-+    <filterSection>
-+        <filterAttribute>qt</filterAttribute>
-+        <filterAttribute>solutions</filterAttribute>
-+        <filterAttribute>qtsingleapplication</filterAttribute>
-+        <toc>
-+            <section ref="index.html" title="Qt Solutions: Single Application Documentation">
-+                <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example"/>
-+                <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example"/>
-+                <section ref="qtsingleapplication-example-loader.html" title="Loading Documents"/>
-+                <section ref="index.html" title="Single Application"/>
-+            </section>
-+        </toc>
-+        <keywords>
-+            <keyword name="A Trivial Example" id="A Trivial Example" ref="qtsingleapplication-example-trivial.html"/>
-+            <keyword name="A non-GUI example" id="A non-GUI example" ref="qtsinglecoreapplication-example-console.html"/>
-+            <keyword name="Loading Documents" id="Loading Documents" ref="qtsingleapplication-example-loader.html"/>
-+            <keyword name="QtSingleApplication" id="QtSingleApplication" ref="qtsingleapplication.html"/>
-+            <keyword name="activateWindow" id="QtSingleApplication::activateWindow" ref="qtsingleapplication.html#activateWindow"/>
-+            <keyword name="activationWindow" id="QtSingleApplication::activationWindow" ref="qtsingleapplication.html#activationWindow"/>
-+            <keyword name="id" id="QtSingleApplication::id" ref="qtsingleapplication.html#id"/>
-+            <keyword name="initialize" id="QtSingleApplication::initialize" ref="qtsingleapplication-obsolete.html#initialize"/>
-+            <keyword name="isRunning" id="QtSingleApplication::isRunning" ref="qtsingleapplication.html#isRunning"/>
-+            <keyword name="messageReceived" id="QtSingleApplication::messageReceived" ref="qtsingleapplication.html#messageReceived"/>
-+            <keyword name="sendMessage" id="QtSingleApplication::sendMessage" ref="qtsingleapplication.html#sendMessage"/>
-+            <keyword name="setActivationWindow" id="QtSingleApplication::setActivationWindow" ref="qtsingleapplication.html#setActivationWindow"/>
-+            <keyword name="QtSingleCoreApplication" id="QtSingleCoreApplication" ref="qtsinglecoreapplication.html"/>
-+            <keyword name="id" id="QtSingleCoreApplication::id" ref="qtsinglecoreapplication.html#id"/>
-+            <keyword name="isRunning" id="QtSingleCoreApplication::isRunning" ref="qtsinglecoreapplication.html#isRunning"/>
-+            <keyword name="messageReceived" id="QtSingleCoreApplication::messageReceived" ref="qtsinglecoreapplication.html#messageReceived"/>
-+            <keyword name="sendMessage" id="QtSingleCoreApplication::sendMessage" ref="qtsinglecoreapplication.html#sendMessage"/>
-+            <keyword name="Single Application" id="Single Application" ref="index.html"/>
-+        </keywords>
-+        <files>
-+            <file>qtsingleapplication.html</file>
-+            <file>index.html</file>
-+            <file>qtsingleapplication-example-trivial.html</file>
-+            <file>qtsinglecoreapplication.html</file>
-+            <file>qtsingleapplication-example-loader.html</file>
-+            <file>qtsinglecoreapplication-example-console.html</file>
-+            <file>classic.css</file>
-+            <file>images/qt-logo.png</file>
-+        </files>
-+    </filterSection>
-+</QtHelpProject>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
-new file mode 100644
-index 0000000..18a9ae8
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
-@@ -0,0 +1,118 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- console.qdoc -->
-+<head>
-+  <title>A non-GUI example</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">A non-GUI example<br /><span class="subtitle"></span>
-+</h1>
-+<p>This example shows how to use the single-application functionality in a console application. It does not require the <tt>QtGui</tt> library at all.</p>
-+<p>The only differences from the GUI application usage demonstrated in the other examples are:</p>
-+<p>1) The <tt>.pro</tt> file should include <tt>qtsinglecoreapplication.pri</tt> instead of <tt>qtsingleapplication.pri</tt></p>
-+<p>2) The class name is <tt>QtSingleCoreApplication</tt> instead of <tt>QtSingleApplication</tt>.</p>
-+<p>3) No calls are made regarding window activation, for obvious reasons.</p>
-+<p>console.pro:</p>
-+<pre> TEMPLATE   = app
-+ CONFIG    += console
-+ SOURCES   += main.cpp
-+ include(../../src/qtsinglecoreapplication.pri)
-+ QT -= gui</pre>
-+<p>main.cpp:</p>
-+<pre><span class="comment"> /****************************************************************************
-+ **
-+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+ ** Contact: http://www.qt-project.org/legal
-+ **
-+ ** This file is part of the Qt Solutions component.
-+ **
-+ ** You may use this file under the terms of the BSD license as follows:
-+ **
-+ ** &quot;Redistribution and use in source and binary forms, with or without
-+ ** modification, are permitted provided that the following conditions are
-+ ** met:
-+ **   * Redistributions of source code must retain the above copyright
-+ **     notice, this list of conditions and the following disclaimer.
-+ **   * Redistributions in binary form must reproduce the above copyright
-+ **     notice, this list of conditions and the following disclaimer in
-+ **     the documentation and/or other materials provided with the
-+ **     distribution.
-+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-+ **     the names of its contributors may be used to endorse or promote
-+ **     products derived from this software without specific prior written
-+ **     permission.
-+ **
-+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
-+ **
-+ ****************************************************************************/</span>
-+
-+ #include &quot;qtsinglecoreapplication.h&quot;
-+ #include &lt;QtCore/QDebug&gt;
-+
-+ void report(const QString&amp; msg)
-+ {
-+     qDebug(&quot;[%i] %s&quot;, (int)QCoreApplication::applicationPid(), qPrintable(msg));
-+ }
-+
-+ class MainClass : public QObject
-+ {
-+     Q_OBJECT
-+ public:
-+     MainClass()
-+         : QObject()
-+         {}
-+
-+ public slots:
-+     void handleMessage(const QString&amp; message)
-+         {
-+             report( &quot;Message received: \&quot;&quot; + message + &quot;\&quot;&quot;);
-+         }
-+ };
-+
-+ int main(int argc, char **argv)
-+ {
-+     report(&quot;Starting up&quot;);
-+
-+     QtSingleCoreApplication app(argc, argv);
-+
-+     if (app.isRunning()) {
-+         QString msg(QString(&quot;Hi master, I am %1.&quot;).arg(QCoreApplication::applicationPid()));
-+         bool sentok = app.sendMessage(msg, 2000);
-+         QString rep(&quot;Another instance is running, so I will exit.&quot;);
-+         rep += sentok ? &quot; Message sent ok.&quot; : &quot; Message sending failed; the other instance may be frozen.&quot;;
-+         report(rep);
-+         return 0;
-+     } else {
-+         report(&quot;No other instance is running; so I will.&quot;);
-+         MainClass mainObj;
-+         QObject::connect(&amp;app, SIGNAL(messageReceived(const QString&amp;)),
-+                          &amp;mainObj, SLOT(handleMessage(const QString&amp;)));
-+         return app.exec();
-+     }
-+ }
-+
-+ #include &quot;main.moc&quot;</pre>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
-new file mode 100644
-index 0000000..69fb858
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
-@@ -0,0 +1,126 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- qtsinglecoreapplication.cpp -->
-+<head>
-+  <title>List of All Members for QtSingleCoreApplication</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">List of All Members for QtSingleCoreApplication</h1>
-+<p>This is the complete list of members for <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>, including inherited members.</p>
-+<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
-+<tr><td width="45%" valign="top"><ul>
-+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
-+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp;, char ** )</div></li>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#event">event</a></b> ( QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exec">exec</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const : QString</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
-+</ul></td><td valign="top"><ul>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
-+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
-+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
-+</ul>
-+</td></tr>
-+</table></p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html
-new file mode 100644
-index 0000000..a20cf2f
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html
-@@ -0,0 +1,98 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+<!DOCTYPE html
-+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-+<!-- qtsinglecoreapplication.cpp -->
-+<head>
-+  <title>QtSingleCoreApplication Class Reference</title>
-+  <link href="classic.css" rel="stylesheet" type="text/css" />
-+</head>
-+<body>
-+<table border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr>
-+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-+</tr></table><h1 class="title">QtSingleCoreApplication Class Reference</h1>
-+<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications. <a href="#details">More...</a></p>
-+<pre> #include &lt;QtSingleCoreApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a>.</p>
-+<ul>
-+<li><a href="qtsinglecoreapplication-members.html">List of all members, including inherited members</a></li>
-+</ul>
-+<hr />
-+<a name="public-functions"></a>
-+<h2>Public Functions</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const</td></tr>
-+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> ()</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
-+</ul>
-+<hr />
-+<a name="public-slots"></a>
-+<h2>Public Slots</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
-+</ul>
-+<hr />
-+<a name="signals"></a>
-+<h2>Signals</h2>
-+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
-+</table>
-+<ul>
-+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
-+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
-+</ul>
-+<h3>Additional Inherited Members</h3>
-+<ul>
-+<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
-+<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
-+<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
-+<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
-+<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
-+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
-+<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
-+<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
-+</ul>
-+<a name="details"></a>
-+<hr />
-+<h2>Detailed Description</h2>
-+<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications.</p>
-+<p>This class is a variant of <a href="qtsingleapplication.html">QtSingleApplication</a> suited for use in console (non-GUI) applications. It is an extension of <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a> (instead of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>). It does not require the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
-+<p>The API and usage is identical to <a href="qtsingleapplication.html">QtSingleApplication</a>, except that functions relating to the &quot;activation window&quot; are not present, for obvious reasons. Please refer to the <a href="qtsingleapplication.html">QtSingleApplication</a> documentation for explanation of the usage.</p>
-+<p>A QtSingleCoreApplication instance can communicate to a <a href="qtsingleapplication.html">QtSingleApplication</a> instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.</p>
-+<p>See also <a href="qtsingleapplication.html">QtSingleApplication</a>.</p>
-+<hr />
-+<h2>Member Function Documentation</h2>
-+<h3 class="fn"><a name="QtSingleCoreApplication"></a>QtSingleCoreApplication::QtSingleCoreApplication ( int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-+<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
-+<h3 class="fn"><a name="QtSingleCoreApplication-2"></a>QtSingleCoreApplication::QtSingleCoreApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-+<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
-+<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleCoreApplication::id () const</h3>
-+<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
-+<h3 class="fn"><a name="isRunning"></a>bool QtSingleCoreApplication::isRunning ()</h3>
-+<p>Returns true if another instance of this application is running; otherwise false.</p>
-+<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
-+<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
-+<h3 class="fn"><a name="messageReceived"></a>void QtSingleCoreApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
-+<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
-+<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
-+<h3 class="fn"><a name="sendMessage"></a>bool QtSingleCoreApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
-+<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object in the running instance will emit the <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
-+<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
-+<p>See also <a href="qtsinglecoreapplication.html#isRunning">isRunning</a>() and <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>().</p>
-+<p /><address><hr /><div align="center">
-+<table width="100%" cellspacing="0" border="0"><tr class="address">
-+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-+</tr></table></div></address></body>
-+</html>
-diff --git a/third-party/qtsingleapplication/doc/images/qt-logo.png b/third-party/qtsingleapplication/doc/images/qt-logo.png
-new file mode 100644
-index 0000000..794162f
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/images/qt-logo.png
-@@ -0,0 +1,10 @@
-+�PNG
-+
-+���
IHDR���9���C�����:u���IDATx�b���?�������bh��������Jn�����Jn�����Jn�����Jn�����Jn�����Jn������ԡ� �Є����`�����r'Q���(
-+!!����N�����b�_���������p�����?�?F&���F�����������312�������G.�y����G&ޏ?�}�e��W��S��S����gb�����(~������™������t�齸���g�0s�Vv`fcd��������������Y8��E�$�xd�U��Uex�$xd9D�����Dr=#������������gdd|���U�ף�w9D�-���
-+2���b8�������������Ͽ���ebddc��eᔐ╗�S��W��S���caB�����#�������������cfd�]����-I�\_�20110`x����������z�������w�������������/�).�#'˯"ǯ*˫,�+'�)�����@lY��������@}��f��ۯ����ͼ��
-+2���@d���$��1�����H������������'�)&�#'ç,ϯ*˧,�#/�%��́�X�����������gfd�����O�X8Y9��s2��G�C�3�g@
fFff.���3������O�|����v��,�l<l|ܬ���5�
!��X������š�300|�����FFF"�,HpBJ����X8�8�����������w������|�1�0����J�ơ��!�?���-� Y�;�Sf��V�^z87}D:�����"6İ��������ǟo�߾���?7+?/�������##f���?#3�����������"����Pff&&���+q�:&[����	122|�����+��o<�x##;3'"����|����?Vf66fv�,�����"ǭ���ͼ�$��)9M,,L�҃��A�CX�_�Y!���c�G�^~}������_FF�������b�,����ョ��d/�����"��������|p����-�L�������?x�����ĭ&�o����;#3+ûW�n��7�l�_�渘�������W�������"٭��3�q0^?�C�Ieb^=###333���O&�4g��?��0����K�G�̲������gfbz��������,�=���J�����"٭LL��1?��-/8Q�[���?�6᫯O���̿_�:7>�%��������?fR���_�|bb`y�엉�3+ԇ�,̌,�4� ������"ͭ��3��2>{�E4�އ��������˯N���������Ԧ�+��������Q�efd���ϛ?6:&������Ǜ�?�|��������"=\��n���$����FFfF���/�<������/.���,�le```d`b``0���{HT�O؝�W�l<!���U��9(�b�>0�����"�`dd������f���cfbb`dx��՛o� y���AP�����,�,��eebW�a�á,�����Qܬ����L�L>�<�d158�����"!\��g`bb���?�7F]u� ��?�~������?�������x�����������!�������"1\�~|���U^\���������/V�������������׏_?p@J$OG���%/Z�-���1�����O�f�����������"9
��񟁙U�_��X�������׿����.ll����������������M�o>��5���Ll�l����������1�0m���00��w��TVx��O�Ú ��b������GB��8�Gt�Uմ�Xp�l��I����������I
-+� ���׶�R/���@2��Y{� ]���d9#u��l�e+�}�N6�������Xf�J�����"խ��������J�13�002³������@�K������"ŭ��z���o?�1000@{���l��Ͽ��`��?ï����2�������"��ecgd�����H�.fFf���������Ɇ��}���Ͽߌ����������"٭윌��y���0200��0�Ac�������<�\p�o�����/��.������"����?;#�ߛ�!����h�g�d����dd����\<|\��300<�|�?j��������"-��������U�������L9D�8E���
i���[ZP����?��z��5fF�6��?���o������"��b�')�~�����?3311�g���/���֯�����cz������߿��>��p��vf����L��~�g����'"������"٭���Qd�����'��i������`�����Ϳ'?�Hۅ�Ǟy�������?�200��� �%�)h��1�.�7?�����.�����"ͭ��3�2�����y�VfFfGyO���/���:�?�������LL�[�,���?/?����^}|��:`luX�-�t�N���X������"�������_Ck��Ƕ�>w��������:����7Wl�S�������ofF�cOv{����OD����7톚�����)*$���@d�����"�������7��$��1CRgɉi[���!�.f&v_#����������ɧ{='JX�X��c`a�g��պ�]R\��̅�?ӧ_�ᄏv�Ѧ��_�2��������"g|������f��ە�(�m��
)\!�&&&F������{������b�a���~>q�ci.�O?�������l���-������"s܅���Ǐ��<Ϟ���n%��h�m���)t�N���6����P��߿��0�H��~����̌,<l��	�|A�����"ӭ���+&�%���v��[7���wed����3�?D#���������gade`b��wh��I������"߭������Q�@���{���U�Rf������������/>�|�ןhm���F>���������1�:���������������19���_/ر����������cc��7k�䱞�]����ۯ������咒�Sa���������B[��?���|}kf��~�����?ɍkF�/�>9*�q�p��Q�������(
@�##ï��e���1|�QX�n���������_������	#ơ��p7���B]X?F������������[a��'���K�����+�
-+�q�������/̌,,L��L�����������7t������Dʡ�z
-+/�����#300��������V���nC����")"����/�?110q�p����￿�����l����_�GV�WN�OU�_UIPSCؐ���?�\e``�������=_�R(2r-d���������?ÿ_��������?+7�8��$���������$���+�:�xB��������VFn^�?����cbdd@�y��Ă������������f```ab�a�㔆L�)���J��sI�2��Ҥ!#3��������>�	�^��y^~o	�(��?+33d:���.c�f�L����(���H�*sJ`��Mg222�ڥ�����ž�����������15����,l����l�"<�<r�|*��jr�*�<
-+"\�]������D�t&V�������7'���f��g����UW�@�WY�WA�K�c��)`������"�ց�	s���?���v&������"�V����g�y�������"���������J�������Jn�����Jn�����Jn�����Jn�����Jn������Qqr�{������IEND�B`�
-\ No newline at end of file
-diff --git a/third-party/qtsingleapplication/doc/index.qdoc b/third-party/qtsingleapplication/doc/index.qdoc
-new file mode 100644
-index 0000000..796dffe
---- /dev/null
-+++ b/third-party/qtsingleapplication/doc/index.qdoc
-@@ -0,0 +1,50 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+/*!
-+	\page index.html
-+	\title Single Application
-+
-+    	\section1 Description
-+	
-+			The QtSingleApplication component provides support
-+			for applications that can be only started once per user.
-+		
-+
-+	
-+			For some applications it is useful or even critical that they are started
-+			only once by any user. Future attempts to start the application should
-+			activate any already running instance, and possibly perform requested
-+			actions, e.g. loading a file, in that instance.
-+
-+			The QtSingleApplication class provides an interface to detect a running
-+			instance, and to send command strings to that instance.
-+	                For console (non-GUI) applications, the QtSingleCoreApplication variant is provided, which avoids dependency on QtGui.
-+
-+		
-+
-+    	
-+		\section1 Classes
-+	    \list
-+	 \i  QtSingleApplication \i  QtSingleCoreApplication\endlist
-+	
-+		\section1 Examples
-+	    \list
-+	 \i  \link qtsingleapplication-example-trivial.html A Trivial Example \endlink  \i  \link qtsingleapplication-example-loader.html Loading Documents \endlink  \i  \link qtsinglecoreapplication-example-console.html A Non-GUI Example \endlink \endlist
-+	
-+	
-+
-+    	
-+
-+    	
-+    		\section1 Tested platforms
-+		\list
-+		\i Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005
-+		    \i Qt 4.4, 4.5 / Linux / gcc
-+		    \i Qt 4.4, 4.5 / MacOS X 10.5 / gcc
-+		    \endlist
-+
-+    	
-+
-+	
-+*/
-diff --git a/third-party/qtsingleapplication/examples/console/console.pro b/third-party/qtsingleapplication/examples/console/console.pro
-new file mode 100644
-index 0000000..e0390e2
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/console/console.pro
-@@ -0,0 +1,5 @@
-+TEMPLATE   = app
-+CONFIG    += console
-+SOURCES   += main.cpp
-+include(../../src/qtsinglecoreapplication.pri)
-+QT -= gui
-diff --git a/third-party/qtsingleapplication/examples/console/console.qdoc b/third-party/qtsingleapplication/examples/console/console.qdoc
-new file mode 100644
-index 0000000..2706e26
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/console/console.qdoc
-@@ -0,0 +1,28 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+/*! \page qtsinglecoreapplication-example-console.html
-+    \title A non-GUI example
-+
-+    This example shows how to use the single-application functionality
-+    in a console application. It does not require the \c QtGui library
-+    at all.
-+
-+    The only differences from the GUI application usage demonstrated
-+    in the other examples are:
-+
-+    1) The \c.pro file should include \c qtsinglecoreapplication.pri
-+       instead of \c qtsingleapplication.pri
-+
-+    2) The class name is \c QtSingleCoreApplication instead of \c
-+       QtSingleApplication.
-+
-+    3) No calls are made regarding window activation, for obvious reasons.
-+
-+    console.pro:
-+    \quotefile console/console.pro
-+
-+    main.cpp:
-+    \quotefile console/main.cpp
-+
-+*/
-diff --git a/third-party/qtsingleapplication/examples/console/main.cpp b/third-party/qtsingleapplication/examples/console/main.cpp
-new file mode 100644
-index 0000000..13fd00e
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/console/main.cpp
-@@ -0,0 +1,52 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+
-+#include "qtsinglecoreapplication.h"
-+#include <QDebug>
-+
-+
-+void report(const QString& msg)
-+{
-+    qDebug("[%i] %s", (int)QCoreApplication::applicationPid(), qPrintable(msg));
-+}
-+
-+class MainClass : public QObject
-+{
-+    Q_OBJECT
-+public:
-+    MainClass()
-+        : QObject()
-+        {}
-+
-+public slots:
-+    void handleMessage(const QString& message)
-+        {
-+            report( "Message received: \"" + message + "\"");
-+        }
-+};
-+
-+int main(int argc, char **argv)
-+{
-+    report("Starting up");
-+
-+    QtSingleCoreApplication app(argc, argv);
-+
-+    if (app.isRunning()) {
-+        QString msg(QString("Hi master, I am %1.").arg(QCoreApplication::applicationPid()));
-+        bool sentok = app.sendMessage(msg, 2000);
-+        QString rep("Another instance is running, so I will exit.");
-+        rep += sentok ? " Message sent ok." : " Message sending failed; the other instance may be frozen.";
-+        report(rep);
-+        return 0;
-+    } else {
-+        report("No other instance is running; so I will.");
-+        MainClass mainObj;
-+        QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
-+                         &mainObj, SLOT(handleMessage(const QString&)));
-+        return app.exec();
-+    }
-+}
-+
-+
-+#include "main.moc"
-diff --git a/third-party/qtsingleapplication/examples/examples.pro b/third-party/qtsingleapplication/examples/examples.pro
-new file mode 100644
-index 0000000..36b8fd3
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/examples.pro
-@@ -0,0 +1,4 @@
-+TEMPLATE = subdirs
-+SUBDIRS	 = trivial \
-+	   loader  \
-+           console
-diff --git a/third-party/qtsingleapplication/examples/loader/file1.qsl b/third-party/qtsingleapplication/examples/loader/file1.qsl
-new file mode 100644
-index 0000000..50fcd26
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/loader/file1.qsl
-@@ -0,0 +1 @@
-+File 1
-diff --git a/third-party/qtsingleapplication/examples/loader/file2.qsl b/third-party/qtsingleapplication/examples/loader/file2.qsl
-new file mode 100644
-index 0000000..4475433
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/loader/file2.qsl
-@@ -0,0 +1 @@
-+File 2
-diff --git a/third-party/qtsingleapplication/examples/loader/loader.pro b/third-party/qtsingleapplication/examples/loader/loader.pro
-new file mode 100644
-index 0000000..3e52586
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/loader/loader.pro
-@@ -0,0 +1,6 @@
-+greaterThan(QT_MAJOR_VERSION, 4): QT += printsupport
-+TEMPLATE	= app
-+
-+include(../../src/qtsingleapplication.pri)
-+
-+SOURCES		+= main.cpp
-diff --git a/third-party/qtsingleapplication/examples/loader/loader.qdoc b/third-party/qtsingleapplication/examples/loader/loader.qdoc
-new file mode 100644
-index 0000000..1f55026
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/loader/loader.qdoc
-@@ -0,0 +1,44 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+/*! \page qtsingleapplication-example-loader.html
-+    \title Loading Documents
-+
-+    The application in this example loads or prints the documents 
-+    passed as commandline parameters to further instances of this
-+    application.
-+
-+    \quotefromfile loader/main.cpp
-+    \printuntil };
-+    The user interface in this application is a QMainWindow subclass
-+    with a QMdiArea as the central widget. It implements a slot
-+    \c handleMessage() that will be connected to the messageReceived()
-+    signal of the QtSingleApplication class.
-+
-+    \printuntil }
-+    The MainWindow constructor creates a minimal user interface.
-+
-+    \printto case Print:
-+    The handleMessage() slot interprets the message passed in as a
-+    filename that can be prepended with \e /print to indicate that
-+    the file should just be printed rather than loaded.
-+
-+    \printto #include
-+    Loading the file will also activate the window.
-+
-+    \printto mw
-+    The \c main entry point function creates a QtSingleApplication
-+    object, and creates a message to send to a running instance
-+    of the application. If the message was sent successfully the
-+    process exits immediately.
-+
-+    \printuntil }
-+    If the message could not be sent the application starts up.  Note
-+    that \c false is passed to the call to setActivationWindow() to
-+    prevent automatic activation for every message received, e.g. when
-+    the application should just print a file. Instead, the message
-+    handling function determines whether activation is requested, and
-+    signals that by emitting the needToShow() signal. This is then
-+    simply connected directly to QtSingleApplication's
-+    activateWindow() slot.
-+*/
-diff --git a/third-party/qtsingleapplication/examples/loader/main.cpp b/third-party/qtsingleapplication/examples/loader/main.cpp
-new file mode 100644
-index 0000000..5078490
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/loader/main.cpp
-@@ -0,0 +1,115 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#include <qtsingleapplication.h>
-+#include <QFile>
-+#include <QMainWindow>
-+#include <QPrinter>
-+#include <QPainter>
-+#include <QTextEdit>
-+#include <QMdiArea>
-+#include <QTextStream>
-+
-+class MainWindow : public QMainWindow
-+{
-+    Q_OBJECT
-+public:
-+    MainWindow();
-+
-+public slots:
-+    void handleMessage(const QString& message);
-+
-+signals:
-+    void needToShow();
-+
-+private:
-+    QMdiArea *workspace;
-+};
-+
-+MainWindow::MainWindow()
-+{
-+    workspace = new QMdiArea(this);
-+
-+    setCentralWidget(workspace);
-+}
-+
-+void MainWindow::handleMessage(const QString& message)
-+{
-+    enum Action {
-+	Nothing,
-+	Open,
-+	Print
-+    } action;
-+
-+    action = Nothing;
-+    QString filename = message;
-+    if (message.toLower().startsWith("/print ")) {
-+	filename = filename.mid(7);
-+	action = Print;
-+    } else if (!message.isEmpty()) {
-+	action = Open;
-+    }
-+    if (action == Nothing) {
-+        emit needToShow();
-+	return;
-+    }
-+
-+    QFile file(filename);
-+    QString contents;
-+    if (file.open(QIODevice::ReadOnly))
-+        contents = file.readAll();
-+    else
-+        contents = "[[Error: Could not load file " + filename + "]]";
-+
-+    QTextEdit *view = new QTextEdit;
-+    view->setPlainText(contents);
-+
-+    switch(action) {
-+    case Print:
-+	{
-+	    QPrinter printer;
-+            view->print(&printer);
-+            delete view;
-+        }
-+	break;
-+
-+    case Open:
-+	{
-+	    workspace->addSubWindow(view);
-+	    view->setWindowTitle(message);
-+	    view->show();
-+            emit needToShow();
-+	}
-+	break;
-+    default:
-+	break;
-+    };
-+}
-+
-+#include "main.moc"
-+
-+int main(int argc, char **argv)
-+{
-+    QtSingleApplication instance("File loader QtSingleApplication example", argc, argv);
-+    QString message;
-+    for (int a = 1; a < argc; ++a) {
-+	message += argv[a];
-+	if (a < argc-1)
-+	    message += " ";
-+    }
-+
-+    if (instance.sendMessage(message))
-+	return 0;
-+
-+    MainWindow mw;
-+    mw.handleMessage(message);
-+    mw.show();
-+
-+    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
-+		     &mw, SLOT(handleMessage(const QString&)));
-+
-+    instance.setActivationWindow(&mw, false);
-+    QObject::connect(&mw, SIGNAL(needToShow()), &instance, SLOT(activateWindow()));
-+
-+    return instance.exec();
-+}
-diff --git a/third-party/qtsingleapplication/examples/trivial/main.cpp b/third-party/qtsingleapplication/examples/trivial/main.cpp
-new file mode 100644
-index 0000000..d243cc5
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/trivial/main.cpp
-@@ -0,0 +1,41 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#include <qtsingleapplication.h>
-+#include <QTextEdit>
-+
-+class TextEdit : public QTextEdit
-+{
-+    Q_OBJECT
-+public:
-+    TextEdit(QWidget *parent = 0)
-+        : QTextEdit(parent)
-+    {}
-+public slots:
-+    void append(const QString &str)
-+    {
-+        QTextEdit::append(str);
-+    }
-+};
-+
-+#include "main.moc"
-+
-+
-+
-+int main(int argc, char **argv)
-+{
-+    QtSingleApplication instance(argc, argv);
-+    if (instance.sendMessage("Wake up!"))
-+	return 0;
-+
-+    TextEdit logview;
-+    logview.setReadOnly(true);
-+    logview.show();
-+
-+    instance.setActivationWindow(&logview);
-+
-+    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
-+		     &logview, SLOT(append(const QString&)));
-+
-+    return instance.exec();
-+}
-diff --git a/third-party/qtsingleapplication/examples/trivial/trivial.pro b/third-party/qtsingleapplication/examples/trivial/trivial.pro
-new file mode 100644
-index 0000000..673497a
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/trivial/trivial.pro
-@@ -0,0 +1,5 @@
-+TEMPLATE	= app
-+
-+include(../../src/qtsingleapplication.pri)
-+
-+SOURCES		+= main.cpp
-diff --git a/third-party/qtsingleapplication/examples/trivial/trivial.qdoc b/third-party/qtsingleapplication/examples/trivial/trivial.qdoc
-new file mode 100644
-index 0000000..4a8640e
---- /dev/null
-+++ b/third-party/qtsingleapplication/examples/trivial/trivial.qdoc
-@@ -0,0 +1,39 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+/*! \page qtsingleapplication-example-trivial.html
-+    \title A Trivial Example
-+
-+    The application in this example has a log-view that displays
-+    messages sent by further instances of the same application.
-+
-+    The example demonstrates the use of the QtSingleApplication
-+    class to detect and communicate with a running instance of
-+    the application using the sendMessage() API. The messageReceived()
-+    signal is used to display received messages in a QTextEdit log.
-+
-+    \quotefromfile trivial/main.cpp
-+    \printuntil instance
-+    The example has only the \c main entry point function.
-+    A QtSingleApplication object is created immediately.
-+
-+    \printuntil return 
-+    If another instance of this application is already running,
-+    sendMessage() will succeed, and this instance just exits
-+    immediately.
-+
-+    \printuntil show()
-+    Otherwise the instance continues as normal and creates the
-+    user interface.
-+
-+    \printuntil return instance.exec();
-+    The \c logview object is also set as the application's activation
-+    window. Every time a message is received, the window will be raised
-+    and activated automatically.
-+
-+    The messageReceived() signal is also connected to the QTextEdit's
-+    append() slot. Every message received from further instances of
-+    this application will be displayed in the log.
-+
-+    Finally the event loop is entered.
-+*/
-diff --git a/third-party/qtsingleapplication/qtsingleapplication.pro b/third-party/qtsingleapplication/qtsingleapplication.pro
-new file mode 100644
-index 0000000..07257c5
---- /dev/null
-+++ b/third-party/qtsingleapplication/qtsingleapplication.pro
-@@ -0,0 +1,5 @@
-+TEMPLATE=subdirs
-+CONFIG += ordered
-+include(common.pri)
-+qtsingleapplication-uselib:SUBDIRS=buildlib
-+SUBDIRS+=examples
-diff --git a/third-party/qtsingleapplication/src/QtLockedFile b/third-party/qtsingleapplication/src/QtLockedFile
-new file mode 100644
-index 0000000..16b48ba
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/QtLockedFile
-@@ -0,0 +1 @@
-+#include "qtlockedfile.h"
-diff --git a/third-party/qtsingleapplication/src/QtSingleApplication b/third-party/qtsingleapplication/src/QtSingleApplication
-new file mode 100644
-index 0000000..d111bf7
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/QtSingleApplication
-@@ -0,0 +1 @@
-+#include "qtsingleapplication.h"
-diff --git a/third-party/qtsingleapplication/src/qtlocalpeer.cpp b/third-party/qtsingleapplication/src/qtlocalpeer.cpp
-new file mode 100644
-index 0000000..7e99171
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlocalpeer.cpp
-@@ -0,0 +1,177 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+
-+#include "qtlocalpeer.h"
-+#include <QCoreApplication>
-+#include <QDataStream>
-+#include <QRegularExpression>
-+#include <QTime>
-+
-+#if defined(Q_OS_WIN)
-+#include <QLibrary>
-+#include <qt_windows.h>
-+typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
-+static PProcessIdToSessionId pProcessIdToSessionId = 0;
-+#endif
-+#if defined(Q_OS_UNIX)
-+#include <sys/types.h>
-+#include <time.h>
-+#include <unistd.h>
-+#endif
-+
-+namespace QtLP_Private {
-+#include "qtlockedfile.cpp"
-+#if defined(Q_OS_WIN)
-+#include "qtlockedfile_win.cpp"
-+#else
-+#include "qtlockedfile_unix.cpp"
-+#endif
-+}
-+
-+const char* QtLocalPeer::ack = "ack";
-+
-+QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
-+    : QObject(parent), id(appId)
-+{
-+    QString prefix = id;
-+    if (id.isEmpty()) {
-+        id = QCoreApplication::applicationFilePath();
-+#if defined(Q_OS_WIN)
-+        id = id.toLower();
-+#endif
-+        prefix = id.section(QLatin1Char('/'), -1);
-+    }
-+    prefix.remove(QRegularExpression("[^a-zA-Z]"));
-+    prefix.truncate(6);
-+
-+    QByteArray idc = id.toUtf8();
-+    quint16 idNum = qChecksum(idc.constData(), idc.size());
-+    socketName = QLatin1String("qtsingleapp-") + prefix
-+                 + QLatin1Char('-') + QString::number(idNum, 16);
-+
-+#if defined(Q_OS_WIN)
-+    if (!pProcessIdToSessionId) {
-+        QLibrary lib("kernel32");
-+        pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
-+    }
-+    if (pProcessIdToSessionId) {
-+        DWORD sessionId = 0;
-+        pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
-+        socketName += QLatin1Char('-') + QString::number(sessionId, 16);
-+    }
-+#else
-+    socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
-+#endif
-+
-+    server = new QLocalServer(this);
-+    QString lockName = QDir(QDir::tempPath()).absolutePath()
-+                       + QLatin1Char('/') + socketName
-+                       + QLatin1String("-lockfile");
-+    lockFile.setFileName(lockName);
-+    lockFile.open(QIODevice::ReadWrite);
-+}
-+
-+
-+
-+bool QtLocalPeer::isClient()
-+{
-+    if (lockFile.isLocked())
-+        return false;
-+
-+    if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
-+        return true;
-+
-+    bool res = server->listen(socketName);
-+#if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
-+    // ### Workaround
-+    if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
-+        QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
-+        res = server->listen(socketName);
-+    }
-+#endif
-+    if (!res)
-+        qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
-+    QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
-+    return false;
-+}
-+
-+
-+bool QtLocalPeer::sendMessage(const QString &message, int timeout)
-+{
-+    if (!isClient())
-+        return false;
-+
-+    QLocalSocket socket;
-+    bool connOk = false;
-+    for(int i = 0; i < 2; i++) {
-+        // Try twice, in case the other instance is just starting up
-+        socket.connectToServer(socketName);
-+        connOk = socket.waitForConnected(timeout/2);
-+        if (connOk || i)
-+            break;
-+        int ms = 250;
-+#if defined(Q_OS_WIN)
-+        Sleep(DWORD(ms));
-+#else
-+        struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
-+        nanosleep(&ts, NULL);
-+#endif
-+    }
-+    if (!connOk)
-+        return false;
-+
-+    QByteArray uMsg(message.toUtf8());
-+    QDataStream ds(&socket);
-+    ds.writeBytes(uMsg.constData(), uMsg.size());
-+    bool res = socket.waitForBytesWritten(timeout);
-+    if (res) {
-+        res &= socket.waitForReadyRead(timeout);   // wait for ack
-+        if (res)
-+            res &= (socket.read(qstrlen(ack)) == ack);
-+    }
-+    return res;
-+}
-+
-+
-+void QtLocalPeer::receiveConnection()
-+{
-+    QLocalSocket* socket = server->nextPendingConnection();
-+    if (!socket)
-+        return;
-+
-+    while (true) {
-+        if (socket->state() == QLocalSocket::UnconnectedState) {
-+            qWarning("QtLocalPeer: Peer disconnected");
-+            delete socket;
-+            return;
-+        }
-+        if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
-+            break;
-+        socket->waitForReadyRead();
-+    }
-+
-+    QDataStream ds(socket);
-+    QByteArray uMsg;
-+    quint32 remaining;
-+    ds >> remaining;
-+    uMsg.resize(remaining);
-+    int got = 0;
-+    char* uMsgBuf = uMsg.data();
-+    do {
-+        got = ds.readRawData(uMsgBuf, remaining);
-+        remaining -= got;
-+        uMsgBuf += got;
-+    } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
-+    if (got < 0) {
-+        qWarning("QtLocalPeer: Message reception failed %s", socket->errorString().toLatin1().constData());
-+        delete socket;
-+        return;
-+    }
-+    QString message(QString::fromUtf8(uMsg));
-+    socket->write(ack, qstrlen(ack));
-+    socket->waitForBytesWritten(1000);
-+    socket->waitForDisconnected(1000); // make sure client reads ack
-+    delete socket;
-+    emit messageReceived(message); //### (might take a long time to return)
-+}
-diff --git a/third-party/qtsingleapplication/src/qtlocalpeer.h b/third-party/qtsingleapplication/src/qtlocalpeer.h
-new file mode 100644
-index 0000000..5e6db56
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlocalpeer.h
-@@ -0,0 +1,40 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#ifndef QTLOCALPEER_H
-+#define QTLOCALPEER_H
-+
-+#include <QLocalServer>
-+#include <QLocalSocket>
-+#include <QDir>
-+
-+#include "qtlockedfile.h"
-+
-+class QtLocalPeer : public QObject
-+{
-+    Q_OBJECT
-+
-+public:
-+    QtLocalPeer(QObject *parent = 0, const QString &appId = QString());
-+    bool isClient();
-+    bool sendMessage(const QString &message, int timeout);
-+    QString applicationId() const
-+        { return id; }
-+
-+Q_SIGNALS:
-+    void messageReceived(const QString &message);
-+
-+protected Q_SLOTS:
-+    void receiveConnection();
-+
-+protected:
-+    QString id;
-+    QString socketName;
-+    QLocalServer* server;
-+    QtLP_Private::QtLockedFile lockFile;
-+
-+private:
-+    static const char* ack;
-+};
-+
-+#endif // QTLOCALPEER_H
-diff --git a/third-party/qtsingleapplication/src/qtlockedfile.cpp b/third-party/qtsingleapplication/src/qtlockedfile.cpp
-new file mode 100644
-index 0000000..78f20bc
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlockedfile.cpp
-@@ -0,0 +1,156 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#include "qtlockedfile.h"
-+
-+/*!
-+    \class QtLockedFile
-+
-+    \brief The QtLockedFile class extends QFile with advisory locking
-+    functions.
-+
-+    A file may be locked in read or write mode. Multiple instances of
-+    \e QtLockedFile, created in multiple processes running on the same
-+    machine, may have a file locked in read mode. Exactly one instance
-+    may have it locked in write mode. A read and a write lock cannot
-+    exist simultaneously on the same file.
-+
-+    The file locks are advisory. This means that nothing prevents
-+    another process from manipulating a locked file using QFile or
-+    file system functions offered by the OS. Serialization is only
-+    guaranteed if all processes that access the file use
-+    QLockedFile. Also, while holding a lock on a file, a process
-+    must not open the same file again (through any API), or locks
-+    can be unexpectedly lost.
-+
-+    The lock provided by an instance of \e QtLockedFile is released
-+    whenever the program terminates. This is true even when the
-+    program crashes and no destructors are called.
-+*/
-+
-+/*! \enum QtLockedFile::LockMode
-+
-+    This enum describes the available lock modes.
-+
-+    \value ReadLock A read lock.
-+    \value WriteLock A write lock.
-+    \value NoLock Neither a read lock nor a write lock.
-+*/
-+
-+/*!
-+    Constructs an unlocked \e QtLockedFile object. This constructor
-+    behaves in the same way as \e QFile::QFile().
-+
-+    \sa QFile::QFile()
-+*/
-+QtLockedFile::QtLockedFile()
-+    : QFile()
-+{
-+#ifdef Q_OS_WIN
-+    wmutex = 0;
-+    rmutex = 0;
-+#endif
-+    m_lock_mode = NoLock;
-+}
-+
-+/*!
-+    Constructs an unlocked QtLockedFile object with file \a name. This
-+    constructor behaves in the same way as \e QFile::QFile(const
-+    QString&).
-+
-+    \sa QFile::QFile()
-+*/
-+QtLockedFile::QtLockedFile(const QString &name)
-+    : QFile(name)
-+{
-+#ifdef Q_OS_WIN
-+    wmutex = 0;
-+    rmutex = 0;
-+#endif
-+    m_lock_mode = NoLock;
-+}
-+
-+/*!
-+  Opens the file in OpenMode \a mode.
-+
-+  This is identical to QFile::open(), with the one exception that the
-+  Truncate mode flag is disallowed. Truncation would conflict with the
-+  advisory file locking, since the file would be modified before the
-+  write lock is obtained. If truncation is required, use resize(0)
-+  after obtaining the write lock.
-+
-+  Returns true if successful; otherwise false.
-+
-+  \sa QFile::open(), QFile::resize()
-+*/
-+bool QtLockedFile::open(OpenMode mode)
-+{
-+    if (mode & QIODevice::Truncate) {
-+        qWarning("QtLockedFile::open(): Truncate mode not allowed.");
-+        return false;
-+    }
-+    return QFile::open(mode);
-+}
-+
-+/*!
-+    Returns \e true if this object has a in read or write lock;
-+    otherwise returns \e false.
-+
-+    \sa lockMode()
-+*/
-+bool QtLockedFile::isLocked() const
-+{
-+    return m_lock_mode != NoLock;
-+}
-+
-+/*!
-+    Returns the type of lock currently held by this object, or \e
-+    QtLockedFile::NoLock.
-+
-+    \sa isLocked()
-+*/
-+QtLockedFile::LockMode QtLockedFile::lockMode() const
-+{
-+    return m_lock_mode;
-+}
-+
-+/*!
-+    \fn bool QtLockedFile::lock(LockMode mode, bool block = true)
-+
-+    Obtains a lock of type \a mode. The file must be opened before it
-+    can be locked.
-+
-+    If \a block is true, this function will block until the lock is
-+    aquired. If \a block is false, this function returns \e false
-+    immediately if the lock cannot be aquired.
-+
-+    If this object already has a lock of type \a mode, this function
-+    returns \e true immediately. If this object has a lock of a
-+    different type than \a mode, the lock is first released and then a
-+    new lock is obtained.
-+
-+    This function returns \e true if, after it executes, the file is
-+    locked by this object, and \e false otherwise.
-+
-+    \sa unlock(), isLocked(), lockMode()
-+*/
-+
-+/*!
-+    \fn bool QtLockedFile::unlock()
-+
-+    Releases a lock.
-+
-+    If the object has no lock, this function returns immediately.
-+
-+    This function returns \e true if, after it executes, the file is
-+    not locked by this object, and \e false otherwise.
-+
-+    \sa lock(), isLocked(), lockMode()
-+*/
-+
-+/*!
-+    \fn QtLockedFile::~QtLockedFile()
-+
-+    Destroys the \e QtLockedFile object. If any locks were held, they
-+    are released.
-+*/
-diff --git a/third-party/qtsingleapplication/src/qtlockedfile.h b/third-party/qtsingleapplication/src/qtlockedfile.h
-new file mode 100644
-index 0000000..c729bf2
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlockedfile.h
-@@ -0,0 +1,60 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#ifndef QTLOCKEDFILE_H
-+#define QTLOCKEDFILE_H
-+
-+#include <QFile>
-+#ifdef Q_OS_WIN
-+#include <QVector>
-+#endif
-+
-+#if defined(Q_OS_WIN)
-+#  if !defined(QT_QTLOCKEDFILE_EXPORT) && !defined(QT_QTLOCKEDFILE_IMPORT)
-+#    define QT_QTLOCKEDFILE_EXPORT
-+#  elif defined(QT_QTLOCKEDFILE_IMPORT)
-+#    if defined(QT_QTLOCKEDFILE_EXPORT)
-+#      undef QT_QTLOCKEDFILE_EXPORT
-+#    endif
-+#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllimport)
-+#  elif defined(QT_QTLOCKEDFILE_EXPORT)
-+#    undef QT_QTLOCKEDFILE_EXPORT
-+#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllexport)
-+#  endif
-+#else
-+#  define QT_QTLOCKEDFILE_EXPORT
-+#endif
-+
-+namespace QtLP_Private {
-+
-+class QT_QTLOCKEDFILE_EXPORT QtLockedFile : public QFile
-+{
-+public:
-+    enum LockMode { NoLock = 0, ReadLock, WriteLock };
-+
-+    QtLockedFile();
-+    QtLockedFile(const QString &name);
-+    ~QtLockedFile();
-+
-+    bool open(OpenMode mode);
-+
-+    bool lock(LockMode mode, bool block = true);
-+    bool unlock();
-+    bool isLocked() const;
-+    LockMode lockMode() const;
-+
-+private:
-+#ifdef Q_OS_WIN
-+    Qt::HANDLE wmutex;
-+    Qt::HANDLE rmutex;
-+    QVector<Qt::HANDLE> rmutexes;
-+    QString mutexname;
-+
-+    Qt::HANDLE getMutexHandle(int idx, bool doCreate);
-+    bool waitMutex(Qt::HANDLE mutex, bool doBlock);
-+
-+#endif
-+    LockMode m_lock_mode;
-+};
-+}
-+#endif
-diff --git a/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp b/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp
-new file mode 100644
-index 0000000..8385d8b
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp
-@@ -0,0 +1,78 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#include <string.h>
-+#include <errno.h>
-+#include <unistd.h>
-+#include <fcntl.h>
-+
-+#include "qtlockedfile.h"
-+
-+bool QtLockedFile::lock(LockMode mode, bool block)
-+{
-+    if (!isOpen()) {
-+        qWarning("QtLockedFile::lock(): file is not opened");
-+        return false;
-+    }
-+ 
-+    if (mode == NoLock)
-+        return unlock();
-+           
-+    if (mode == m_lock_mode)
-+        return true;
-+
-+    if (m_lock_mode != NoLock)
-+        unlock();
-+
-+    struct flock fl;
-+    fl.l_whence = SEEK_SET;
-+    fl.l_start = 0;
-+    fl.l_len = 0;
-+    fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK;
-+    int cmd = block ? F_SETLKW : F_SETLK;
-+    int ret = fcntl(handle(), cmd, &fl);
-+    
-+    if (ret == -1) {
-+        if (errno != EINTR && errno != EAGAIN)
-+            qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
-+        return false;
-+    }
-+
-+    
-+    m_lock_mode = mode;
-+    return true;
-+}
-+
-+
-+bool QtLockedFile::unlock()
-+{
-+    if (!isOpen()) {
-+        qWarning("QtLockedFile::unlock(): file is not opened");
-+        return false;
-+    }
-+
-+    if (!isLocked())
-+        return true;
-+
-+    struct flock fl;
-+    fl.l_whence = SEEK_SET;
-+    fl.l_start = 0;
-+    fl.l_len = 0;
-+    fl.l_type = F_UNLCK;
-+    int ret = fcntl(handle(), F_SETLKW, &fl);
-+    
-+    if (ret == -1) {
-+        qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
-+        return false;
-+    }
-+    
-+    m_lock_mode = NoLock;
-+    return true;
-+}
-+
-+QtLockedFile::~QtLockedFile()
-+{
-+    if (isOpen())
-+        unlock();
-+}
-+
-diff --git a/third-party/qtsingleapplication/src/qtlockedfile_win.cpp b/third-party/qtsingleapplication/src/qtlockedfile_win.cpp
-new file mode 100644
-index 0000000..28cf072
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtlockedfile_win.cpp
-@@ -0,0 +1,174 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#include "qtlockedfile.h"
-+#include <qt_windows.h>
-+#include <QFileInfo>
-+
-+#define MUTEX_PREFIX "QtLockedFile mutex "
-+// Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS
-+#define MAX_READERS MAXIMUM_WAIT_OBJECTS
-+
-+#if QT_VERSION >= 0x050000
-+#define QT_WA(unicode, ansi) unicode
-+#endif
-+
-+Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate)
-+{
-+    if (mutexname.isEmpty()) {
-+        QFileInfo fi(*this);
-+        mutexname = QString::fromLatin1(MUTEX_PREFIX)
-+                    + fi.absoluteFilePath().toLower();
-+    }
-+    QString mname(mutexname);
-+    if (idx >= 0)
-+        mname += QString::number(idx);
-+
-+    Qt::HANDLE mutex;
-+    if (doCreate) {
-+        QT_WA( { mutex = CreateMutexW(NULL, FALSE, (TCHAR*)mname.utf16()); },
-+               { mutex = CreateMutexA(NULL, FALSE, mname.toLocal8Bit().constData()); } );
-+        if (!mutex) {
-+            qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
-+            return 0;
-+        }
-+    }
-+    else {
-+        QT_WA( { mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, (TCHAR*)mname.utf16()); },
-+               { mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, mname.toLocal8Bit().constData()); } );
-+        if (!mutex) {
-+            if (GetLastError() != ERROR_FILE_NOT_FOUND)
-+                qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
-+            return 0;
-+        }
-+    }
-+    return mutex;
-+}
-+
-+bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock)
-+{
-+    Q_ASSERT(mutex);
-+    DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0);
-+    switch (res) {
-+    case WAIT_OBJECT_0:
-+    case WAIT_ABANDONED:
-+        return true;
-+        break;
-+    case WAIT_TIMEOUT:
-+        break;
-+    default:
-+        qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
-+    }
-+    return false;
-+}
-+
-+
-+
-+bool QtLockedFile::lock(LockMode mode, bool block)
-+{
-+    if (!isOpen()) {
-+        qWarning("QtLockedFile::lock(): file is not opened");
-+        return false;
-+    }
-+
-+    if (mode == NoLock)
-+        return unlock();
-+
-+    if (mode == m_lock_mode)
-+        return true;
-+
-+    if (m_lock_mode != NoLock)
-+        unlock();
-+
-+    if (!wmutex && !(wmutex = getMutexHandle(-1, true)))
-+        return false;
-+
-+    if (!waitMutex(wmutex, block))
-+        return false;
-+
-+    if (mode == ReadLock) {
-+        int idx = 0;
-+        for (; idx < MAX_READERS; idx++) {
-+            rmutex = getMutexHandle(idx, false);
-+            if (!rmutex || waitMutex(rmutex, false))
-+                break;
-+            CloseHandle(rmutex);
-+        }
-+        bool ok = true;
-+        if (idx >= MAX_READERS) {
-+            qWarning("QtLockedFile::lock(): too many readers");
-+            rmutex = 0;
-+            ok = false;
-+        }
-+        else if (!rmutex) {
-+            rmutex = getMutexHandle(idx, true);
-+            if (!rmutex || !waitMutex(rmutex, false))
-+                ok = false;
-+        }
-+        if (!ok && rmutex) {
-+            CloseHandle(rmutex);
-+            rmutex = 0;
-+        }
-+        ReleaseMutex(wmutex);
-+        if (!ok)
-+            return false;
-+    }
-+    else {
-+        Q_ASSERT(rmutexes.isEmpty());
-+        for (int i = 0; i < MAX_READERS; i++) {
-+            Qt::HANDLE mutex = getMutexHandle(i, false);
-+            if (mutex)
-+                rmutexes.append(mutex);
-+        }
-+        if (rmutexes.size()) {
-+            DWORD res = WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(),
-+                                               TRUE, block ? INFINITE : 0);
-+            if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) {
-+                if (res != WAIT_TIMEOUT)
-+                    qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed");
-+                m_lock_mode = WriteLock;  // trick unlock() to clean up - semiyucky
-+                unlock();
-+                return false;
-+            }
-+        }
-+    }
-+
-+    m_lock_mode = mode;
-+    return true;
-+}
-+
-+bool QtLockedFile::unlock()
-+{
-+    if (!isOpen()) {
-+        qWarning("QtLockedFile::unlock(): file is not opened");
-+        return false;
-+    }
-+
-+    if (!isLocked())
-+        return true;
-+
-+    if (m_lock_mode == ReadLock) {
-+        ReleaseMutex(rmutex);
-+        CloseHandle(rmutex);
-+        rmutex = 0;
-+    }
-+    else {
-+        foreach(Qt::HANDLE mutex, rmutexes) {
-+            ReleaseMutex(mutex);
-+            CloseHandle(mutex);
-+        }
-+        rmutexes.clear();
-+        ReleaseMutex(wmutex);
-+    }
-+
-+    m_lock_mode = QtLockedFile::NoLock;
-+    return true;
-+}
-+
-+QtLockedFile::~QtLockedFile()
-+{
-+    if (isOpen())
-+        unlock();
-+    if (wmutex)
-+        CloseHandle(wmutex);
-+}
-diff --git a/third-party/qtsingleapplication/src/qtsingleapplication.cpp b/third-party/qtsingleapplication/src/qtsingleapplication.cpp
-new file mode 100644
-index 0000000..a6f4516
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsingleapplication.cpp
-@@ -0,0 +1,310 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+
-+#include "qtsingleapplication.h"
-+#include "qtlocalpeer.h"
-+#include <QWidget>
-+
-+
-+/*!
-+    \class QtSingleApplication qtsingleapplication.h
-+    \brief The QtSingleApplication class provides an API to detect and
-+    communicate with running instances of an application.
-+
-+    This class allows you to create applications where only one
-+    instance should be running at a time. I.e., if the user tries to
-+    launch another instance, the already running instance will be
-+    activated instead. Another usecase is a client-server system,
-+    where the first started instance will assume the role of server,
-+    and the later instances will act as clients of that server.
-+
-+    By default, the full path of the executable file is used to
-+    determine whether two processes are instances of the same
-+    application. You can also provide an explicit identifier string
-+    that will be compared instead.
-+
-+    The application should create the QtSingleApplication object early
-+    in the startup phase, and call isRunning() to find out if another
-+    instance of this application is already running. If isRunning()
-+    returns false, it means that no other instance is running, and
-+    this instance has assumed the role as the running instance. In
-+    this case, the application should continue with the initialization
-+    of the application user interface before entering the event loop
-+    with exec(), as normal.
-+
-+    The messageReceived() signal will be emitted when the running
-+    application receives messages from another instance of the same
-+    application. When a message is received it might be helpful to the
-+    user to raise the application so that it becomes visible. To
-+    facilitate this, QtSingleApplication provides the
-+    setActivationWindow() function and the activateWindow() slot.
-+
-+    If isRunning() returns true, another instance is already
-+    running. It may be alerted to the fact that another instance has
-+    started by using the sendMessage() function. Also data such as
-+    startup parameters (e.g. the name of the file the user wanted this
-+    new instance to open) can be passed to the running instance with
-+    this function. Then, the application should terminate (or enter
-+    client mode).
-+
-+    If isRunning() returns true, but sendMessage() fails, that is an
-+    indication that the running instance is frozen.
-+
-+    Here's an example that shows how to convert an existing
-+    application to use QtSingleApplication. It is very simple and does
-+    not make use of all QtSingleApplication's functionality (see the
-+    examples for that).
-+
-+    \code
-+    // Original
-+    int main(int argc, char **argv)
-+    {
-+        QApplication app(argc, argv);
-+
-+        MyMainWidget mmw;
-+        mmw.show();
-+        return app.exec();
-+    }
-+
-+    // Single instance
-+    int main(int argc, char **argv)
-+    {
-+        QtSingleApplication app(argc, argv);
-+
-+        if (app.isRunning())
-+            return !app.sendMessage(someDataString);
-+
-+        MyMainWidget mmw;
-+        app.setActivationWindow(&mmw);
-+        mmw.show();
-+        return app.exec();
-+    }
-+    \endcode
-+
-+    Once this QtSingleApplication instance is destroyed (normally when
-+    the process exits or crashes), when the user next attempts to run the
-+    application this instance will not, of course, be encountered. The
-+    next instance to call isRunning() or sendMessage() will assume the
-+    role as the new running instance.
-+
-+    For console (non-GUI) applications, QtSingleCoreApplication may be
-+    used instead of this class, to avoid the dependency on the QtGui
-+    library.
-+
-+    \sa QtSingleCoreApplication
-+*/
-+
-+
-+void QtSingleApplication::sysInit(const QString &appId)
-+{
-+    actWin = 0;
-+    peer = new QtLocalPeer(this, appId);
-+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-+}
-+
-+
-+/*!
-+    Creates a QtSingleApplication object. The application identifier
-+    will be QCoreApplication::applicationFilePath(). \a argc, \a
-+    argv, and \a GUIenabled are passed on to the QAppliation constructor.
-+
-+    If you are creating a console application (i.e. setting \a
-+    GUIenabled to false), you may consider using
-+    QtSingleCoreApplication instead.
-+*/
-+
-+QtSingleApplication::QtSingleApplication(int &argc, char **argv, bool GUIenabled)
-+    : QApplication(argc, argv, GUIenabled)
-+{
-+    sysInit();
-+}
-+
-+
-+/*!
-+    Creates a QtSingleApplication object with the application
-+    identifier \a appId. \a argc and \a argv are passed on to the
-+    QAppliation constructor.
-+*/
-+
-+QtSingleApplication::QtSingleApplication(const QString &appId, int &argc, char **argv)
-+    : QApplication(argc, argv)
-+{
-+    sysInit(appId);
-+}
-+
-+#if QT_VERSION < 0x050000
-+
-+/*!
-+    Creates a QtSingleApplication object. The application identifier
-+    will be QCoreApplication::applicationFilePath(). \a argc, \a
-+    argv, and \a type are passed on to the QAppliation constructor.
-+*/
-+QtSingleApplication::QtSingleApplication(int &argc, char **argv, Type type)
-+    : QApplication(argc, argv, type)
-+{
-+    sysInit();
-+}
-+
-+
-+#  if defined(Q_WS_X11)
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QApplication's corresponding constructor. The application identifier
-+  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
-+  and \a cmap are passed on to the QApplication constructor.
-+*/
-+QtSingleApplication::QtSingleApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QApplication(dpy, visual, cmap)
-+{
-+    sysInit();
-+}
-+
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QApplication's corresponding constructor. The application identifier
-+  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
-+  argv, \a visual, and \a cmap are passed on to the QApplication
-+  constructor.
-+*/
-+QtSingleApplication::QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QApplication(dpy, argc, argv, visual, cmap)
-+{
-+    sysInit();
-+}
-+
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QApplication's corresponding constructor. The application identifier
-+  will be \a appId. \a dpy, \a argc, \a
-+  argv, \a visual, and \a cmap are passed on to the QApplication
-+  constructor.
-+*/
-+QtSingleApplication::QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QApplication(dpy, argc, argv, visual, cmap)
-+{
-+    sysInit(appId);
-+}
-+#  endif // Q_WS_X11
-+#endif // QT_VERSION < 0x050000
-+
-+
-+/*!
-+    Returns true if another instance of this application is running;
-+    otherwise false.
-+
-+    This function does not find instances of this application that are
-+    being run by a different user (on Windows: that are running in
-+    another session).
-+
-+    \sa sendMessage()
-+*/
-+
-+bool QtSingleApplication::isRunning()
-+{
-+    return peer->isClient();
-+}
-+
-+
-+/*!
-+    Tries to send the text \a message to the currently running
-+    instance. The QtSingleApplication object in the running instance
-+    will emit the messageReceived() signal when it receives the
-+    message.
-+
-+    This function returns true if the message has been sent to, and
-+    processed by, the current instance. If there is no instance
-+    currently running, or if the running instance fails to process the
-+    message within \a timeout milliseconds, this function return false.
-+
-+    \sa isRunning(), messageReceived()
-+*/
-+bool QtSingleApplication::sendMessage(const QString &message, int timeout)
-+{
-+    return peer->sendMessage(message, timeout);
-+}
-+
-+
-+/*!
-+    Returns the application identifier. Two processes with the same
-+    identifier will be regarded as instances of the same application.
-+*/
-+QString QtSingleApplication::id() const
-+{
-+    return peer->applicationId();
-+}
-+
-+
-+/*!
-+  Sets the activation window of this application to \a aw. The
-+  activation window is the widget that will be activated by
-+  activateWindow(). This is typically the application's main window.
-+
-+  If \a activateOnMessage is true (the default), the window will be
-+  activated automatically every time a message is received, just prior
-+  to the messageReceived() signal being emitted.
-+
-+  \sa activateWindow(), messageReceived()
-+*/
-+
-+void QtSingleApplication::setActivationWindow(QWidget* aw, bool activateOnMessage)
-+{
-+    actWin = aw;
-+    if (activateOnMessage)
-+        connect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
-+    else
-+        disconnect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
-+}
-+
-+
-+/*!
-+    Returns the applications activation window if one has been set by
-+    calling setActivationWindow(), otherwise returns 0.
-+
-+    \sa setActivationWindow()
-+*/
-+QWidget* QtSingleApplication::activationWindow() const
-+{
-+    return actWin;
-+}
-+
-+
-+/*!
-+  De-minimizes, raises, and activates this application's activation window.
-+  This function does nothing if no activation window has been set.
-+
-+  This is a convenience function to show the user that this
-+  application instance has been activated when he has tried to start
-+  another instance.
-+
-+  This function should typically be called in response to the
-+  messageReceived() signal. By default, that will happen
-+  automatically, if an activation window has been set.
-+
-+  \sa setActivationWindow(), messageReceived(), initialize()
-+*/
-+void QtSingleApplication::activateWindow()
-+{
-+    if (actWin) {
-+        actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized);
-+        actWin->raise();
-+        actWin->activateWindow();
-+    }
-+}
-+
-+
-+/*!
-+    \fn void QtSingleApplication::messageReceived(const QString& message)
-+
-+    This signal is emitted when the current instance receives a \a
-+    message from another instance of this application.
-+
-+    \sa sendMessage(), setActivationWindow(), activateWindow()
-+*/
-+
-+
-+/*!
-+    \fn void QtSingleApplication::initialize(bool dummy = true)
-+
-+    \obsolete
-+*/
-diff --git a/third-party/qtsingleapplication/src/qtsingleapplication.h b/third-party/qtsingleapplication/src/qtsingleapplication.h
-new file mode 100644
-index 0000000..f8f6e88
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsingleapplication.h
-@@ -0,0 +1,68 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#ifndef QTSINGLEAPPLICATION_H
-+#define QTSINGLEAPPLICATION_H
-+
-+#include <QApplication>
-+
-+class QtLocalPeer;
-+
-+#if defined(Q_OS_WIN)
-+#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
-+#    define QT_QTSINGLEAPPLICATION_EXPORT
-+#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
-+#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
-+#      undef QT_QTSINGLEAPPLICATION_EXPORT
-+#    endif
-+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
-+#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
-+#    undef QT_QTSINGLEAPPLICATION_EXPORT
-+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
-+#  endif
-+#else
-+#  define QT_QTSINGLEAPPLICATION_EXPORT
-+#endif
-+
-+class QT_QTSINGLEAPPLICATION_EXPORT QtSingleApplication : public QApplication
-+{
-+    Q_OBJECT
-+
-+public:
-+    QtSingleApplication(int &argc, char **argv, bool GUIenabled = true);
-+    QtSingleApplication(const QString &id, int &argc, char **argv);
-+#if QT_VERSION < 0x050000
-+    QtSingleApplication(int &argc, char **argv, Type type);
-+#  if defined(Q_WS_X11)
-+    QtSingleApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-+    QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
-+    QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-+#  endif // Q_WS_X11
-+#endif // QT_VERSION < 0x050000
-+
-+    bool isRunning();
-+    QString id() const;
-+
-+    void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
-+    QWidget* activationWindow() const;
-+
-+    // Obsolete:
-+    void initialize(bool dummy = true)
-+        { isRunning(); Q_UNUSED(dummy) }
-+
-+public Q_SLOTS:
-+    bool sendMessage(const QString &message, int timeout = 5000);
-+    void activateWindow();
-+
-+
-+Q_SIGNALS:
-+    void messageReceived(const QString &message);
-+
-+
-+private:
-+    void sysInit(const QString &appId = QString());
-+    QtLocalPeer *peer;
-+    QWidget *actWin;
-+};
-+
-+#endif // QTSINGLEAPPLICATION_H
-diff --git a/third-party/qtsingleapplication/src/qtsingleapplication.pri b/third-party/qtsingleapplication/src/qtsingleapplication.pri
-new file mode 100644
-index 0000000..6f2bced
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsingleapplication.pri
-@@ -0,0 +1,17 @@
-+include(../common.pri)
-+INCLUDEPATH += $$PWD
-+DEPENDPATH += $$PWD
-+QT *= network
-+greaterThan(QT_MAJOR_VERSION, 4): QT *= widgets
-+
-+qtsingleapplication-uselib:!qtsingleapplication-buildlib {
-+    LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
-+} else {
-+    SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
-+    HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
-+}
-+
-+win32 {
-+    contains(TEMPLATE, lib):contains(CONFIG, shared):DEFINES += QT_QTSINGLEAPPLICATION_EXPORT
-+    else:qtsingleapplication-uselib:DEFINES += QT_QTSINGLEAPPLICATION_IMPORT
-+}
-diff --git a/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp b/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp
-new file mode 100644
-index 0000000..a3e2b3a
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp
-@@ -0,0 +1,112 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+
-+#include "qtsinglecoreapplication.h"
-+#include "qtlocalpeer.h"
-+
-+/*!
-+    \class QtSingleCoreApplication qtsinglecoreapplication.h
-+    \brief A variant of the QtSingleApplication class for non-GUI applications.
-+
-+    This class is a variant of QtSingleApplication suited for use in
-+    console (non-GUI) applications. It is an extension of
-+    QCoreApplication (instead of QApplication). It does not require
-+    the QtGui library.
-+
-+    The API and usage is identical to QtSingleApplication, except that
-+    functions relating to the "activation window" are not present, for
-+    obvious reasons. Please refer to the QtSingleApplication
-+    documentation for explanation of the usage.
-+
-+    A QtSingleCoreApplication instance can communicate to a
-+    QtSingleApplication instance if they share the same application
-+    id. Hence, this class can be used to create a light-weight
-+    command-line tool that sends commands to a GUI application.
-+
-+    \sa QtSingleApplication
-+*/
-+
-+/*!
-+    Creates a QtSingleCoreApplication object. The application identifier
-+    will be QCoreApplication::applicationFilePath(). \a argc and \a
-+    argv are passed on to the QCoreAppliation constructor.
-+*/
-+
-+QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv)
-+    : QCoreApplication(argc, argv)
-+{
-+    peer = new QtLocalPeer(this);
-+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-+}
-+
-+
-+/*!
-+    Creates a QtSingleCoreApplication object with the application
-+    identifier \a appId. \a argc and \a argv are passed on to the
-+    QCoreAppliation constructor.
-+*/
-+QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId, int &argc, char **argv)
-+    : QCoreApplication(argc, argv)
-+{
-+    peer = new QtLocalPeer(this, appId);
-+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-+}
-+
-+
-+/*!
-+    Returns true if another instance of this application is running;
-+    otherwise false.
-+
-+    This function does not find instances of this application that are
-+    being run by a different user (on Windows: that are running in
-+    another session).
-+
-+    \sa sendMessage()
-+*/
-+
-+bool QtSingleCoreApplication::isRunning()
-+{
-+    return peer->isClient();
-+}
-+
-+
-+/*!
-+    Tries to send the text \a message to the currently running
-+    instance. The QtSingleCoreApplication object in the running instance
-+    will emit the messageReceived() signal when it receives the
-+    message.
-+
-+    This function returns true if the message has been sent to, and
-+    processed by, the current instance. If there is no instance
-+    currently running, or if the running instance fails to process the
-+    message within \a timeout milliseconds, this function return false.
-+
-+    \sa isRunning(), messageReceived()
-+*/
-+
-+bool QtSingleCoreApplication::sendMessage(const QString &message, int timeout)
-+{
-+    return peer->sendMessage(message, timeout);
-+}
-+
-+
-+/*!
-+    Returns the application identifier. Two processes with the same
-+    identifier will be regarded as instances of the same application.
-+*/
-+
-+QString QtSingleCoreApplication::id() const
-+{
-+    return peer->applicationId();
-+}
-+
-+
-+/*!
-+    \fn void QtSingleCoreApplication::messageReceived(const QString& message)
-+
-+    This signal is emitted when the current instance receives a \a
-+    message from another instance of this application.
-+
-+    \sa sendMessage()
-+*/
-diff --git a/third-party/qtsingleapplication/src/qtsinglecoreapplication.h b/third-party/qtsingleapplication/src/qtsinglecoreapplication.h
-new file mode 100644
-index 0000000..1272589
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsinglecoreapplication.h
-@@ -0,0 +1,34 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#ifndef QTSINGLECOREAPPLICATION_H
-+#define QTSINGLECOREAPPLICATION_H
-+
-+#include <QCoreApplication>
-+
-+class QtLocalPeer;
-+
-+class QtSingleCoreApplication : public QCoreApplication
-+{
-+    Q_OBJECT
-+
-+public:
-+    QtSingleCoreApplication(int &argc, char **argv);
-+    QtSingleCoreApplication(const QString &id, int &argc, char **argv);
-+
-+    bool isRunning();
-+    QString id() const;
-+
-+public Q_SLOTS:
-+    bool sendMessage(const QString &message, int timeout = 5000);
-+
-+
-+Q_SIGNALS:
-+    void messageReceived(const QString &message);
-+
-+
-+private:
-+    QtLocalPeer* peer;
-+};
-+
-+#endif // QTSINGLECOREAPPLICATION_H
-diff --git a/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri b/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri
-new file mode 100644
-index 0000000..d2d6cc3
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri
-@@ -0,0 +1,10 @@
-+INCLUDEPATH	+= $$PWD
-+DEPENDPATH      += $$PWD
-+HEADERS		+= $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
-+SOURCES		+= $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
-+
-+QT *= network
-+
-+win32:contains(TEMPLATE, lib):contains(CONFIG, shared) {
-+    DEFINES += QT_QTSINGLECOREAPPLICATION_EXPORT=__declspec(dllexport)
-+}
-diff --git a/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp b/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp
-new file mode 100644
-index 0000000..037aa8f
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp
-@@ -0,0 +1,243 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+
-+#include "qtsingleguiapplication.h"
-+#include "qtlocalpeer.h"
-+
-+
-+/*!
-+    \class QtSingleGuiApplication qtsingleguiapplication.h
-+    \brief The QtSingleGuiApplication class provides an API to detect and
-+    communicate with running instances of an application.
-+
-+    This class allows you to create applications where only one
-+    instance should be running at a time. I.e., if the user tries to
-+    launch another instance, the already running instance will be
-+    activated instead. Another usecase is a client-server system,
-+    where the first started instance will assume the role of server,
-+    and the later instances will act as clients of that server.
-+
-+    By default, the full path of the executable file is used to
-+    determine whether two processes are instances of the same
-+    application. You can also provide an explicit identifier string
-+    that will be compared instead.
-+
-+    The application should create the QtSingleGuiApplication object early
-+    in the startup phase, and call isRunning() to find out if another
-+    instance of this application is already running. If isRunning()
-+    returns false, it means that no other instance is running, and
-+    this instance has assumed the role as the running instance. In
-+    this case, the application should continue with the initialization
-+    of the application user interface before entering the event loop
-+    with exec(), as normal.
-+
-+    The messageReceived() signal will be emitted when the running
-+    application receives messages from another instance of the same
-+    application. When a message is received it might be helpful to the
-+    user to raise the application so that it becomes visible.
-+
-+    If isRunning() returns true, another instance is already
-+    running. It may be alerted to the fact that another instance has
-+    started by using the sendMessage() function. Also data such as
-+    startup parameters (e.g. the name of the file the user wanted this
-+    new instance to open) can be passed to the running instance with
-+    this function. Then, the application should terminate (or enter
-+    client mode).
-+
-+    If isRunning() returns true, but sendMessage() fails, that is an
-+    indication that the running instance is frozen.
-+
-+    Here's an example that shows how to convert an existing
-+    application to use QtSingleGuiApplication. It is very simple and does
-+    not make use of all QtSingleGuiApplication's functionality (see the
-+    examples for that).
-+
-+    \code
-+    // Original
-+    int main(int argc, char **argv)
-+    {
-+        QGuiApplication app(argc, argv);
-+
-+        return app.exec();
-+    }
-+
-+    // Single instance
-+    int main(int argc, char **argv)
-+    {
-+        QtSingleGuiApplication app(argc, argv);
-+
-+        if (app.isRunning())
-+            return !app.sendMessage(someDataString);
-+
-+        return app.exec();
-+    }
-+    \endcode
-+
-+    Once this QtSingleGuiApplication instance is destroyed (normally when
-+    the process exits or crashes), when the user next attempts to run the
-+    application this instance will not, of course, be encountered. The
-+    next instance to call isRunning() or sendMessage() will assume the
-+    role as the new running instance.
-+
-+    For console (non-GUI) applications, QtSingleCoreApplication may be
-+    used instead of this class, to avoid the dependency on the QtGui
-+    library.
-+
-+    \sa QtSingleCoreApplication
-+*/
-+
-+
-+void QtSingleGuiApplication::sysInit(const QString &appId)
-+{
-+    peer = new QtLocalPeer(this, appId);
-+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-+}
-+
-+
-+/*!
-+    Creates a QtSingleGuiApplication object. The application identifier
-+    will be QCoreApplication::applicationFilePath(). \a argc, \a
-+    argv, and \a GUIenabled are passed on to the QAppliation constructor.
-+
-+    If you are creating a console application (i.e. setting \a
-+    GUIenabled to false), you may consider using
-+    QtSingleCoreApplication instead.
-+*/
-+
-+QtSingleGuiApplication::QtSingleGuiApplication(int &argc, char **argv, bool GUIenabled)
-+    : QGuiApplication(argc, argv, GUIenabled)
-+{
-+    sysInit();
-+}
-+
-+
-+/*!
-+    Creates a QtSingleGuiApplication object with the application
-+    identifier \a appId. \a argc and \a argv are passed on to the
-+    QAppliation constructor.
-+*/
-+
-+QtSingleGuiApplication::QtSingleGuiApplication(const QString &appId, int &argc, char **argv)
-+    : QGuiApplication(argc, argv)
-+{
-+    sysInit(appId);
-+}
-+
-+#if QT_VERSION < 0x050000
-+
-+/*!
-+    Creates a QtSingleGuiApplication object. The application identifier
-+    will be QCoreApplication::applicationFilePath(). \a argc, \a
-+    argv, and \a type are passed on to the QAppliation constructor.
-+*/
-+QtSingleGuiApplication::QtSingleGuiApplication(int &argc, char **argv, Type type)
-+    : QGuiApplication(argc, argv, type)
-+{
-+    sysInit();
-+}
-+
-+
-+#  if defined(Q_WS_X11)
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QGuiApplication's corresponding constructor. The application identifier
-+  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
-+  and \a cmap are passed on to the QGuiApplication constructor.
-+*/
-+QtSingleGuiApplication::QtSingleGuiApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QGuiApplication(dpy, visual, cmap)
-+{
-+    sysInit();
-+}
-+
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QGuiApplication's corresponding constructor. The application identifier
-+  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
-+  argv, \a visual, and \a cmap are passed on to the QGuiApplication
-+  constructor.
-+*/
-+QtSingleGuiApplication::QtSingleGuiApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QGuiApplication(dpy, argc, argv, visual, cmap)
-+{
-+    sysInit();
-+}
-+
-+/*!
-+  Special constructor for X11, ref. the documentation of
-+  QGuiApplication's corresponding constructor. The application identifier
-+  will be \a appId. \a dpy, \a argc, \a
-+  argv, \a visual, and \a cmap are passed on to the QGuiApplication
-+  constructor.
-+*/
-+QtSingleGuiApplication::QtSingleGuiApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-+    : QGuiApplication(dpy, argc, argv, visual, cmap)
-+{
-+    sysInit(appId);
-+}
-+#  endif // Q_WS_X11
-+#endif // QT_VERSION < 0x050000
-+
-+
-+/*!
-+    Returns true if another instance of this application is running;
-+    otherwise false.
-+
-+    This function does not find instances of this application that are
-+    being run by a different user (on Windows: that are running in
-+    another session).
-+
-+    \sa sendMessage()
-+*/
-+
-+bool QtSingleGuiApplication::isRunning()
-+{
-+    return peer->isClient();
-+}
-+
-+
-+/*!
-+    Tries to send the text \a message to the currently running
-+    instance. The QtSingleGuiApplication object in the running instance
-+    will emit the messageReceived() signal when it receives the
-+    message.
-+
-+    This function returns true if the message has been sent to, and
-+    processed by, the current instance. If there is no instance
-+    currently running, or if the running instance fails to process the
-+    message within \a timeout milliseconds, this function return false.
-+
-+    \sa isRunning(), messageReceived()
-+*/
-+bool QtSingleGuiApplication::sendMessage(const QString &message, int timeout)
-+{
-+    return peer->sendMessage(message, timeout);
-+}
-+
-+
-+/*!
-+    Returns the application identifier. Two processes with the same
-+    identifier will be regarded as instances of the same application.
-+*/
-+QString QtSingleGuiApplication::id() const
-+{
-+    return peer->applicationId();
-+}
-+
-+
-+/*!
-+    \fn void QtSingleGuiApplication::messageReceived(const QString& message)
-+
-+    This signal is emitted when the current instance receives a \a
-+    message from another instance of this application.
-+
-+    \sa sendMessage(), setActivationWindow(), activateWindow()
-+*/
-+
-+
-+/*!
-+    \fn void QtSingleGuiApplication::initialize(bool dummy = true)
-+
-+    \obsolete
-+*/
-\ No newline at end of file
-diff --git a/third-party/qtsingleapplication/src/qtsingleguiapplication.h b/third-party/qtsingleapplication/src/qtsingleguiapplication.h
-new file mode 100644
-index 0000000..034d11b
---- /dev/null
-+++ b/third-party/qtsingleapplication/src/qtsingleguiapplication.h
-@@ -0,0 +1,63 @@
-+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-+// SPDX-License-Identifier: BSD-3-Clause
-+
-+#ifndef QTSINGLEGUIAPPLICATION_H
-+#define QTSINGLEGUIAPPLICATION_H
-+
-+#include <QGuiApplication>
-+
-+class QtLocalPeer;
-+
-+#if defined(Q_OS_WIN)
-+#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
-+#    define QT_QTSINGLEAPPLICATION_EXPORT
-+#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
-+#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
-+#      undef QT_QTSINGLEAPPLICATION_EXPORT
-+#    endif
-+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
-+#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
-+#    undef QT_QTSINGLEAPPLICATION_EXPORT
-+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
-+#  endif
-+#else
-+#  define QT_QTSINGLEAPPLICATION_EXPORT
-+#endif
-+
-+class QT_QTSINGLEAPPLICATION_EXPORT QtSingleGuiApplication : public QGuiApplication
-+{
-+    Q_OBJECT
-+
-+public:
-+    QtSingleGuiApplication(int &argc, char **argv, bool GUIenabled = true);
-+    QtSingleGuiApplication(const QString &id, int &argc, char **argv);
-+#if QT_VERSION < 0x050000
-+    QtSingleGuiApplication(int &argc, char **argv, Type type);
-+#  if defined(Q_WS_X11)
-+    QtSingleGuiApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-+    QtSingleGuiApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
-+    QtSingleGuiApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-+#  endif // Q_WS_X11
-+#endif // QT_VERSION < 0x050000
-+
-+    bool isRunning();
-+    QString id() const;
-+
-+    // Obsolete:
-+    void initialize(bool dummy = true)
-+        { isRunning(); Q_UNUSED(dummy) }
-+
-+public Q_SLOTS:
-+    bool sendMessage(const QString &message, int timeout = 5000);
-+
-+
-+Q_SIGNALS:
-+    void messageReceived(const QString &message);
-+
-+
-+private:
-+    void sysInit(const QString &appId = QString());
-+    QtLocalPeer *peer;
-+};
-+
-+#endif // QTSINGLEGUIAPPLICATION_H
-\ No newline at end of file
-diff --git a/utils.cpp b/utils.cpp
-index a2a24e7..315099f 100644
---- a/utils.cpp
-+++ b/utils.cpp
-@@ -12,44 +12,33 @@
- 
- #include <X11/Xlib.h>
- 
--QImage convertPlainTextToImage(const QString& plainText, const QSize& imageSize)
-+QImage convertPlainTextToImage(const QString& plainText)
- {
--    // 创建 QImage 并设置其尺寸和格式
--    QImage image(imageSize, QImage::Format_RGB32);
--    image.fill(Qt::white);
--
--    // 创建 QPainter 并设置绘制设备为 QImage
-+    // 创建 QTextDocument 对象,并设置富文本数据
-+    QTextDocument textDocument;
-+    textDocument.setPlainText(plainText);
-+    // 创建图片对象,并设置大小
-+    QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
-+    image.fill(Qt::transparent);
-+    // 创建绘图对象
-     QPainter painter(&image);
--
--    QRect rect(10, 10, imageSize.width() - 10, imageSize.height() - 10);
--
--    if (!plainText.isEmpty())
--        painter.drawText(rect, Qt::AlignLeft | Qt::TextWordWrap, plainText);
--
--    painter.end();
--
-+    // 渲染富文本数据到图片中
-+    textDocument.drawContents(&painter);
-     return image;
- }
- 
--QImage convertRichTextToImage(const QString& richText, const QSize& imageSize)
-+QImage convertRichTextToImage(const QString& richText)
- {
--    // 创建 QTextDocument 对象并加载富文本
-+    // 创建 QTextDocument 对象,并设置富文本数据
-     QTextDocument textDocument;
-     textDocument.setHtml(richText);
--    textDocument.setTextWidth(imageSize.width());
--
--    // 创建 QImage 并设置其尺寸和格式
--    QImage image(imageSize, QImage::Format_RGB32);
--    image.fill(Qt::white);
--
--    // 创建 QPainter 并设置绘制设备为 QImage
-+    // 创建图片对象,并设置大小
-+    QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
-+    image.fill(Qt::transparent);
-+    // 创建绘图对象
-     QPainter painter(&image);
--
--    // 渲染 QTextDocument 到 QPainter
-+    // 渲染富文本数据到图片中
-     textDocument.drawContents(&painter);
--
--    painter.end();
--
-     return image;
- }
- 
-@@ -60,7 +49,6 @@ QString convertRichTextToPlainText(const QString& richText)
-     textDocument.setHtml(richText);
- 
-     QString plainText = textDocument.toPlainText();
--    qDebug() << "Plain text: " << plainText;
- 
-     return plainText;
- }
-diff --git a/utils.h b/utils.h
-index fc3ae70..507634a 100644
---- a/utils.h
-+++ b/utils.h
-@@ -2,9 +2,9 @@
- 
- #include <QImage>
- 
--QImage convertPlainTextToImage(const QString& plainText, const QSize& imageSize);
-+QImage convertPlainTextToImage(const QString& plainText);
- 
--QImage convertRichTextToImage(const QString& richText, const QSize& imageSize);
-+QImage convertRichTextToImage(const QString& richText);
- 
- QString convertRichTextToPlainText(const QString& richText);
- 
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0010-changelog.patch ukui-clipboard-2.0.0.0/debian/patches/0010-changelog.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0010-changelog.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0010-changelog.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,790 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Tue, 21 May 2024 18:25:54 +0800
-Subject: =?utf-8?b?5pu05pawY2hhbmdlbG9n?=
-
----
- CMakeLists.txt         |   5 ++-
- ClipboardWindow.qml    |  74 +++++++++++++++++++++------------
- FunctionMenuWindow.qml | 102 +++++++++++++++++++++++++++++++++++++++++++++
- clipboardbackend.cpp   |  31 ++++++++++++--
- clipboardbackend.h     |  13 ++++--
- data.cpp               |  20 ++++++++-
- data.h                 |   3 ++
- main.cpp               |   9 +++-
- main.qml               | 110 -------------------------------------------------
- qml.qrc                |   2 +-
- titlelesswindow.h      |  47 ---------------------
- windowsettings.cpp     |  67 ++++++++++++++++++++++++++++++
- windowsettings.h       |  30 ++++++++++++++
- 13 files changed, 319 insertions(+), 194 deletions(-)
- create mode 100644 FunctionMenuWindow.qml
- delete mode 100644 main.qml
- delete mode 100644 titlelesswindow.h
- create mode 100644 windowsettings.cpp
- create mode 100644 windowsettings.h
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9016c9b..ab3b8dc 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -35,6 +35,7 @@ find_package(KF5CoreAddons REQUIRED)
- find_package(Qt5 COMPONENTS Core Quick X11Extras REQUIRED)
- find_package(X11 REQUIRED)
- find_package(PkgConfig REQUIRED)
-+find_package(ukui-quick COMPONENTS platform REQUIRED)
- 
- set(EXTERNAL_LIBS "")
- set(PC_PKGS kysdk-waylandhelper)
-@@ -63,7 +64,8 @@ else()
-       clipboardbackend.h
-       utils.cpp
-       utils.h
--      titlelesswindow.h
-+      windowsettings.cpp
-+      windowsettings.h
-       qml.qrc
-     )
- endif()
-@@ -84,6 +86,7 @@ target_link_libraries(ukui-clipboard PRIVATE
-     kylin-ai-base
-     ${X11_LIBRARIES}
-     ${EXTERNAL_LIBS}
-+    ukui-quick::platform
- )
- 
- install(TARGETS ukui-clipboard ${INSTALL_TARGETS_DEFAULT_ARGS})
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 934111b..016c8f0 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -9,6 +9,7 @@ import ContentMenu 1.0
- ApplicationWindow {
-     id: clipboardWindow
-     visible: false
-+    title: "Preview Window"
-     property int paddings: 4
-     property int shadowWidth: 8
-     property int windowWidth: 568
-@@ -16,28 +17,45 @@ ApplicationWindow {
-     property int maxContentWidth: 540
-     property int maxContentHeight: 360
-     property int windowRadius: 18
--    width: windowWidth + shadowWidth * 2
--    height: windowHeight + shadowWidth * 2
--    // 设置Tool属性可以让窗口不显示到任务栏和多任务视图
--    // 但是只在X11环境下生效
--    flags: Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint | Qt.Tool
-+    width: windowWidth
-+    height: windowHeight
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
-     onVisibleChanged: {
-         if (visible) {
-             var pos = backend.getGlobalMousePosition()
--            clipboardWindow.x = pos.x - clipboardWindow.width/2
--            clipboardWindow.y = pos.y - clipboardWindow.height/2
-+            clipboardWindow.x = (Screen.width - clipboardWindow.width) / 2
-+            clipboardWindow.y = (Screen.height - clipboardWindow.height) / 2
-+            // 删除下拉菜单里多余的选项并切换到指定界面
-+            buttonMenu.removeItem();
-+            var currentType = backend.displayedType
-+            stack.switchToSpecifiedPage(currentType)
-         }
-     }
- 
--    // 阴影区域
--    ShadowComponent {
--        id: shadowArea
--        visible: true
-+    Connections {
-+        target: backend
-+        function onClipboardWindowVisibleChanged(visible) {
-+            clipboardWindow.visible = visible
-+        }
-+    }
-+
-+    // 鼠标拖动
-+    MouseArea {
-         anchors.fill: parent
--        radius: windowRadius
--        shadowWidth: shadowWidth
-+        cursorShape: Qt.SizeAllCursor
-+        property int mouseX: 0
-+        property int mouseY: 0
-+        onPressed: {
-+            mouseX = mouse.x
-+            mouseY = mouse.y
-+        }
-+        onPositionChanged: {
-+            if (mouse.buttons === Qt.LeftButton) {
-+                clipboardWindow.x += mouse.x - mouseX
-+                clipboardWindow.y += mouse.y - mouseY
-+            }
-+        }
-     }
- 
-     Rectangle {
-@@ -49,8 +67,7 @@ ApplicationWindow {
-         radius: windowRadius
-         clip : true
-         property int lastDisplayedType: -1
--        property string restoreIconName: backend.displayedType === ContentType.Image ?
--                                             "image-x-generic-symbolic" : "ukui-idtext-symbolic"
-+        property string restoreIconName: backend.displayedIconName
- 
-         Row {
-             id: topLine
-@@ -178,11 +195,22 @@ ApplicationWindow {
-                     delegate: MenuItem {
-                         id: menuItem
-                         text: modelData.itemName
--                        contentItem: Label {
--                            text: menuItem.text
--                            font: menuItem.font
--                            verticalAlignment: Text.AlignVCenter
--                            leftPadding: paddings * 2
-+                        contentItem: Row {
-+                            spacing: paddings
-+                            Image {
-+                                x: paddings * 2
-+                                height: 16
-+                                width: 16
-+                                fillMode: Image.PreserveAspectFit
-+                                mipmap: true
-+                                anchors.verticalCenter: parent.verticalCenter
-+                                source: Qt.resolvedUrl("image://theme/" + modelData.iconName)
-+                            }
-+                            Label {
-+                                text: menuItem.text
-+                                font: menuItem.font
-+                                verticalAlignment: Text.AlignVCenter
-+                            }
-                         }
-                         highlighted: buttonMenu.currentIndex === index
-                         background: Rectangle {
-@@ -224,12 +252,6 @@ ApplicationWindow {
-                          }
-                     }
-                 }
--
--                Component.onCompleted: {
--                    removeItem();
--                    var currentType = backend.displayedType
--                    stack.switchToSpecifiedPage(currentType)
--                }
-             }
-         }
- 
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-new file mode 100644
-index 0000000..4df56cc
---- /dev/null
-+++ b/FunctionMenuWindow.qml
-@@ -0,0 +1,102 @@
-+import QtQuick 2.15
-+import QtQuick.Window 2.15
-+import QtQuick.Controls 2.15
-+import ContentMenu 1.0
-+
-+ApplicationWindow {
-+    id: contentWindow
-+    width: 140
-+    height: optionMenu.contentHeight
-+    title: "Function Menu Window"
-+    property int paddings: 4
-+    // 设置窗口背景颜色为透明,以便于显示圆角效果
-+    color: "transparent"
-+
-+    Connections {
-+        target: backend
-+        function onContentMenuVisibleChanged(visible) {
-+            contentWindow.visible = visible
-+        }
-+    }
-+    onVisibleChanged: {
-+        if (visible) {
-+            var pos = backend.getGlobalMousePosition()
-+            x = pos.x + 2
-+            y = pos.y + 2
-+            optionMenu.visible = true
-+        }
-+    }
-+    onFocusObjectChanged: {
-+        if (object === null) {
-+            visible = false
-+            optionMenu.currentIndex = -1
-+        }
-+    }
-+
-+    Menu {
-+        id: optionMenu
-+        anchors.centerIn: parent
-+        width: parent.width
-+        visible: true
-+        currentIndex: -1
-+        onVisibleChanged: {
-+            if (!visible) {
-+                contentWindow.visible = false
-+                currentIndex = -1
-+            }
-+        }
-+
-+        Repeater {
-+            id: control
-+            model: backend.contentMenus
-+            delegate: MenuItem {
-+                id: menuItem
-+                text: modelData.itemName
-+                highlighted: optionMenu.currentIndex === index
-+                contentItem: Label {
-+                    text: menuItem.text
-+                    font: menuItem.font
-+                    verticalAlignment: Text.AlignVCenter
-+                    leftPadding: paddings * 2
-+                }
-+                background: Rectangle {
-+                    anchors.fill: menuItem
-+                    color: "white"
-+                    Rectangle {
-+                        width: parent.width - paddings * 2
-+                        height: parent.height - paddings * 2
-+                        radius: paddings
-+                        anchors.centerIn: parent
-+                        color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
-+                    }
-+                }
-+                onTriggered: {
-+                    contentWindow.visible = false
-+                    optionMenu.currentIndex = -1
-+                    var currentType =  backend.contentMenus[index].contentType
-+                    if (currentType === ContentType.Original) {
-+                        // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
-+                        if (backend.originalType === ContentType.Image) {
-+                            backend.copyToClipboard(ContentType.Image)
-+                        }
-+                        backend.performPasteOperation()
-+                    } else {
-+                        backend.setDisplayedType(currentType)
-+                        backend.showClipboardWindow()
-+                    }
-+                }
-+                MouseArea {
-+                    anchors.fill: parent
-+                    hoverEnabled: true
-+                    onEntered: optionMenu.currentIndex = index
-+                    onExited: optionMenu.currentIndex = -1
-+                    onClicked: menuItem.triggered()
-+                }
-+            }
-+        }
-+    }
-+}
-+
-+
-+
-+
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 8544047..eee19b4 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -19,13 +19,10 @@
- #include <X11/keysymdef.h>
- #include <X11/keysym.h>
- 
--#include "titlelesswindow.h"
--
- ClipboardBackend::ClipboardBackend(QObject *parent)
-     : QObject{parent}
-     , m_imageProvider(new InMemoryImageProvider())
- {
--    qmlRegisterType<TitleLessWindow>("TitleLessWindow", 1, 0, "DeactiveWindow");
-     monitorShortCut();
-     // 加0.1s的延时保证快捷键生效
-     m_timer.setInterval(100);
-@@ -41,6 +38,25 @@ void ClipboardBackend::setDisplayedType(int type)
- 
-     m_displayedType = type;
-     emit displayedTypeChanged();
-+
-+    switch (m_displayedType) {
-+    case ContentMenu::PlainText:
-+        m_displayedIconName = "ukui-screenshot-text-symbolic";
-+        break;
-+    case ContentMenu::RichText:
-+        m_displayedIconName = "ukui-idtext-symbolic";
-+        break;
-+    case ContentMenu::Image:
-+        m_displayedIconName = "image-x-generic-symbolic";
-+        break;
-+    case ContentMenu::Original:
-+        m_displayedIconName = "";
-+        break;
-+    default:
-+        m_displayedIconName = "";
-+        break;
-+    }
-+    emit displayedIconNameChanged();
- }
- 
- void ClipboardBackend::setOriginalType(int type)
-@@ -110,6 +126,10 @@ bool ClipboardBackend::processClipboardData()
-         return false;
-     }
- 
-+    if (KWindowSystem::isPlatformX11() && mimeData->html().isEmpty() && mimeData->text().isEmpty()) {
-+        return false;
-+    }
-+
-     this->clearContentMenu();
-     this->clearImages();
- 
-@@ -179,6 +199,11 @@ void ClipboardBackend::showContentMenu()
-     emit contentMenuVisibleChanged(true);
- }
- 
-+void ClipboardBackend::showClipboardWindow()
-+{
-+    emit clipboardWindowVisibleChanged(true);
-+}
-+
- void ClipboardBackend::pasteClicked() const
- {
-     Display* disp = XOpenDisplay(NULL);
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index 46a434a..4a0e0e7 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -13,6 +13,7 @@ class ClipboardBackend : public QObject
-     Q_OBJECT
-     Q_PROPERTY(QVariant contentMenus READ contentMenus NOTIFY contentMenusChanged)
-     Q_PROPERTY(int displayedType READ displayedType WRITE setDisplayedType NOTIFY displayedTypeChanged)
-+    Q_PROPERTY(QString displayedIconName READ displayedIconName NOTIFY displayedIconNameChanged)
-     Q_PROPERTY(int originalType READ originalType WRITE setOriginalType NOTIFY originalTypeChanged)
-     Q_PROPERTY(QSize imageSize READ imageSize WRITE setImageSize NOTIFY imageSizeChanged)
-     Q_PROPERTY(QString richText READ richText WRITE setRichText NOTIFY richTextChanged)
-@@ -36,14 +37,17 @@ public:
-     QString plainText() const { return m_plainText; }
-     Q_INVOKABLE void setPlainText(const QString &plainText);
- 
--    Q_INVOKABLE QIcon getIcon(QString iconName) {m_icon = QIcon::fromTheme(iconName, m_icon);
--                                                 return m_icon;};
-+    Q_INVOKABLE QString displayedIconName() { return m_displayedIconName; }
-+    Q_INVOKABLE QIcon getIcon(QString iconName) {
-+        return QIcon::fromTheme(iconName);
-+    }
- 
-     Q_INVOKABLE int imageNumber() const;
-     Q_INVOKABLE void copyToClipboard(int contentType);
-     Q_INVOKABLE void performPasteOperation();
-     Q_INVOKABLE QPoint getGlobalMousePosition() const;    
-     Q_INVOKABLE void removeContentMenu(int index);
-+    Q_INVOKABLE void showClipboardWindow();
- 
- public:
-     InMemoryImageProvider *getImageProvider();
-@@ -64,10 +68,11 @@ signals:
-     void richTextChanged();
-     void plainTextChanged();
-     void displayedTypeChanged();
-+    void displayedIconNameChanged();
-     void originalTypeChanged();
-     void imageSizeChanged();
-     void contentMenuVisibleChanged(bool visible);
--    void mouseClickedOutOfWindow();
-+    void clipboardWindowVisibleChanged(bool visible);
- 
- private:
-     QList<QObject*> m_contentMenus;
-@@ -76,7 +81,7 @@ private:
-     QSize m_imageSize;
-     QString m_richText;
-     QString m_plainText;
--    QIcon m_icon;
-+    QString m_displayedIconName;
-     QTimer m_timer;
-     // 不需要自己释放,engine 会管理释放
-     InMemoryImageProvider *m_imageProvider = nullptr;
-diff --git a/data.cpp b/data.cpp
-index d542b73..c949ae1 100644
---- a/data.cpp
-+++ b/data.cpp
-@@ -1,7 +1,25 @@
- #include "data.h"
- 
- ContentMenu::ContentMenu(ContentType contentType, const QString &itemName, QObject *parent)
--    : m_contentType(contentType), m_itemName(itemName), QObject(parent) {}
-+    : m_contentType(contentType), m_itemName(itemName), QObject(parent) {
-+    switch (contentType) {
-+    case ContentType::PlainText:
-+        m_iconName = "ukui-screenshot-text-symbolic";
-+        break;
-+    case ContentType::RichText:
-+        m_iconName = "ukui-idtext-symbolic";
-+        break;
-+    case ContentType::Image:
-+        m_iconName = "image-x-generic-symbolic";
-+        break;
-+    case ContentType::Original:
-+        m_iconName = "";
-+        break;
-+    default:
-+        m_iconName = "";
-+        break;
-+    }
-+}
- 
- ContentMenu::ContentMenu(const ContentMenu &rhs)
- {
-diff --git a/data.h b/data.h
-index c4d045e..4b51a0d 100644
---- a/data.h
-+++ b/data.h
-@@ -9,6 +9,7 @@ class ContentMenu : public QObject {
-     Q_OBJECT
-     Q_PROPERTY(ContentType contentType READ contentType CONSTANT)
-     Q_PROPERTY(QString itemName READ itemName CONSTANT)
-+    Q_PROPERTY(QString iconName READ iconName CONSTANT)
- 
- public:
-     enum ContentType {
-@@ -27,12 +28,14 @@ public:
- 
-     ContentType contentType() const { return m_contentType; }
-     QString itemName() const { return m_itemName; }
-+    QString iconName() const { return m_iconName; }
- 
- signals:
- 
- private:
-     ContentType m_contentType;
-     QString m_itemName;
-+    QString m_iconName;
- };
- 
- Q_DECLARE_METATYPE(ContentMenu)
-diff --git a/main.cpp b/main.cpp
-index db00ce4..005302a 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -4,9 +4,14 @@
- #include <QKeyEvent>
- #include <QCommandLineOption>
- #include <QCommandLineParser>
-+#include <QQuickWindow>
-+#include <QDebug>
-+
- 
- #include "qtsingleguiapplication.h"
- #include "clipboardbackend.h"
-+#include "windowsettings.h"
-+
- int main(int argc, char *argv[])
- {
- 
-@@ -37,7 +42,7 @@ int main(int argc, char *argv[])
- 
-     engine.rootContext()->setContextProperty("backend", &backend);
-     engine.addImageProvider(QLatin1String("inMemoryImages"), backend.getImageProvider());
--    const QUrl url(QStringLiteral("qrc:/main.qml"));
-+    const QUrl url(QStringLiteral("qrc:/FunctionMenuWindow.qml"));
-     QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
-                      &app, [url](QObject *obj, const QUrl &objUrl) {
-         if (!obj && url == objUrl)
-@@ -47,5 +52,7 @@ int main(int argc, char *argv[])
-     const QUrl url1(QStringLiteral("qrc:/ClipboardWindow.qml"));
-     engine.load(url1);
- 
-+    WindowSettings settings;
-+
-     return app.exec();
- }
-diff --git a/main.qml b/main.qml
-deleted file mode 100644
-index 77a3c86..0000000
---- a/main.qml
-+++ /dev/null
-@@ -1,110 +0,0 @@
--import QtQuick 2.15
--import QtQuick.Window 2.15
--import QtQuick.Controls 2.15
--import TitleLessWindow 1.0 as TLWindow
--import ContentMenu 1.0
--
--TLWindow.DeactiveWindow {
--    id: contentWindow
--    width: 140
--    height: optionMenu.contentHeight
--    title: qsTr("Content Window")
--    property int paddings: 4
--    // 设置窗口背景颜色为透明,以便于显示圆角效果
--    color: "transparent"
--
--    onVisibleChanged: {
--        if (visible) {
--            var pos = backend.getGlobalMousePosition()
--            x = pos.x + 2
--            y = pos.y + 2
--            optionMenu.visible = true
--        }
--    }
--    onWindowDeactivated: {
--        visible = false
--        optionMenu.currentIndex = -1
--    }
--
--    Menu {
--        id: optionMenu
--        anchors.centerIn: parent
--        width: parent.width
--        visible: true
--        currentIndex: -1
--        onVisibleChanged: {
--            if (!visible) {
--                contentWindow.visible = false
--                currentIndex = -1
--            }
--        }
--
--        Repeater {
--            id: control
--            model: backend.contentMenus
--            delegate: MenuItem {
--                id: menuItem
--                text: modelData.itemName
--                highlighted: optionMenu.currentIndex === index
--                contentItem: Label {
--                    text: menuItem.text
--                    font: menuItem.font
--                    verticalAlignment: Text.AlignVCenter
--                    leftPadding: paddings * 2
--                }
--                background: Rectangle {
--                    anchors.fill: menuItem
--                    color: "white"
--                    Rectangle {
--                        width: parent.width - paddings * 2
--                        height: parent.height - paddings * 2
--                        radius: paddings
--                        anchors.centerIn: parent
--                        color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
--                    }
--                }
--                onTriggered: {
--                    contentWindow.visible = false
--                    optionMenu.currentIndex = -1
--                    var currentType =  backend.contentMenus[index].contentType
--                    if (currentType === ContentType.Original) {
--                        // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
--                        if (backend.originalType === ContentType.Image) {
--                            backend.copyToClipboard(ContentType.Image)
--                        }
--                        backend.performPasteOperation()
--                    } else {
--                        backend.setDisplayedType(currentType)
--                        clipboardComponent.createObject()
--                    }
--                }
--                MouseArea {
--                    anchors.fill: parent
--                    hoverEnabled: true
--                    onEntered: optionMenu.currentIndex = index
--                    onExited: optionMenu.currentIndex = -1
--                    onClicked: menuItem.triggered()
--                }
--            }
--        }
--    }
--
--    Connections {
--        target: backend
--        function onContentMenuVisibleChanged(visible) {
--            contentWindow.visible = visible
--        }
--    }
--
--    Component {
--        id: clipboardComponent
--        ClipboardWindow {
--            id: clipboardWindow
--            visible: true
--        }
--    }
--}
--
--
--
--
-diff --git a/qml.qrc b/qml.qrc
-index 7043075..2f7233d 100644
---- a/qml.qrc
-+++ b/qml.qrc
-@@ -1,6 +1,6 @@
- <RCC>
-     <qresource prefix="/">
--        <file>main.qml</file>
-+        <file>FunctionMenuWindow.qml</file>
-         <file>ClipboardWindow.qml</file>
-         <file>TextEditArea.qml</file>
-         <file>ShadowComponent.qml</file>
-diff --git a/titlelesswindow.h b/titlelesswindow.h
-deleted file mode 100644
-index d595021..0000000
---- a/titlelesswindow.h
-+++ /dev/null
-@@ -1,47 +0,0 @@
--#ifndef TITLELESSWINDOW_H
--#define TITLELESSWINDOW_H
--
--#endif // TITLELESSWINDOW_H
--#include <QQuickWindow>
--#include <QFocusEvent>
--#include <QDebug>
--// kysdk
--#include <kysdk/applications/windowmanager/windowmanager.h>
--#include <kysdk/applications/ukuistylehelper/ukui-decoration-manager.h>
--#include <ukuistylehelper/xatom-helper.h>
--
--#include <QGuiApplication>
--
--class TitleLessWindow : public QQuickWindow
--{
--    Q_OBJECT
--
--public:
--    TitleLessWindow(QWindow *parent = nullptr) : QQuickWindow(parent) {
--        // 无边框窗口不需要去除标题栏
--        if (this->flags().testFlag(Qt::FramelessWindowHint)) {
--            return;
--        }
--
--        if (QGuiApplication::platformName().startsWith(QStringLiteral("wayland"))) {
--            UKUIDecorationManager::getInstance()->removeHeaderBar(this);
--        } else {
--            MotifWmHints hints;
--            hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
--            hints.functions = MWM_FUNC_ALL;
--            hints.decorations = MWM_DECOR_BORDER;
--            XAtomHelper::getInstance()->setWindowMotifHint(static_cast<int>(this->winId()), hints);
--        }
--    }
--
--protected:
--    void focusOutEvent(QFocusEvent *event) override {
--        qDebug() << "Window lost focus!";
--        // 在这里发出一个信号到 QML
--        emit windowDeactivated();
--        QQuickWindow::focusOutEvent(event);
--    }
--
--signals:
--    void windowDeactivated();
--};
-diff --git a/windowsettings.cpp b/windowsettings.cpp
-new file mode 100644
-index 0000000..4621b34
---- /dev/null
-+++ b/windowsettings.cpp
-@@ -0,0 +1,67 @@
-+#include <unistd.h>
-+
-+#include <QDebug>
-+#include <QGuiApplication>
-+#include <QWindow>
-+#include <QWindowList>
-+
-+// kysdk
-+#include <kysdk/applications/ukuistylehelper/ukui-decoration-manager.h>
-+#include <ukuistylehelper/xatom-helper.h>
-+
-+#include "windowsettings.h"
-+
-+WindowSettings::WindowSettings(QObject *parent)
-+    : QObject{parent}
-+{
-+    setSkipTaskbarAndSwitcher();
-+    setKeepAbove();
-+    removeTitleBar();
-+}
-+
-+void WindowSettings::setKeepAbove()
-+{
-+    connect(kdk::WindowManager::self(), &kdk::WindowManager::windowAdded, this, [=](const kdk::WindowId& windowId){
-+        QString title = kdk::WindowManager::getWindowTitle(windowId);
-+        quint32 pid = kdk::WindowManager::getPid(windowId);
-+        if((quint32)getpid() == pid) {
-+            foreach (QWindow *window, qGuiApp->allWindows()) {
-+                if (window->title() == title) {
-+                    m_windowMap[window] = windowId;
-+                    kdk::WindowManager::self()->keepWindowAbove(windowId);
-+                }
-+            }
-+        }
-+    });
-+}
-+
-+void WindowSettings::setSkipTaskbarAndSwitcher()
-+{
-+    // 设置不显示在任务栏和多任务视图会概率导致qml窗口设置x,y坐标不生效
-+    QWindowList m_windowList = qGuiApp->allWindows();
-+    foreach (QWindow *window, m_windowList) {
-+        kdk::WindowManager::self()->setSkipSwitcher(window, true);
-+        kdk::WindowManager::self()->setSkipTaskBar(window, true);
-+    }
-+}
-+
-+void WindowSettings::removeTitleBar()
-+{
-+    QWindowList m_windowList = qGuiApp->allWindows();
-+    foreach (QWindow *window, m_windowList) {
-+        // 无边框窗口不需要去除标题栏
-+        if (window->flags().testFlag(Qt::FramelessWindowHint)) {
-+            return;
-+        }
-+
-+        if (QGuiApplication::platformName().startsWith(QStringLiteral("wayland"))) {
-+            UKUIDecorationManager::getInstance()->removeHeaderBar(window);
-+        } else {
-+            MotifWmHints hints;
-+            hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
-+            hints.functions = MWM_FUNC_ALL;
-+            hints.decorations = MWM_DECOR_BORDER;
-+            XAtomHelper::getInstance()->setWindowMotifHint(static_cast<int>(window->winId()), hints);
-+        }
-+    }
-+}
-diff --git a/windowsettings.h b/windowsettings.h
-new file mode 100644
-index 0000000..18bb24d
---- /dev/null
-+++ b/windowsettings.h
-@@ -0,0 +1,30 @@
-+#ifndef WINDOWSETTINGS_H
-+#define WINDOWSETTINGS_H
-+
-+#include <QMap>
-+#include <QObject>
-+#include <QWindow>
-+
-+// kysdk
-+#include <kysdk/applications/windowmanager/windowmanager.h>
-+
-+class WindowSettings : public QObject
-+{
-+    Q_OBJECT
-+public:
-+    explicit WindowSettings(QObject *parent = nullptr);
-+
-+private:
-+    void setKeepAbove();
-+    void setSkipTaskbarAndSwitcher();
-+    void removeTitleBar();
-+
-+signals:
-+
-+private:
-+    QMap<QWindow*, kdk::WindowId> m_windowMap;
-+    QWindow *m_functionMenuWindow = nullptr;
-+    QWindow *m_previewWindow = nullptr;
-+};
-+
-+#endif // WINDOWSETTINGS_H
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0011-changelog.patch ukui-clipboard-2.0.0.0/debian/patches/0011-changelog.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0011-changelog.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0011-changelog.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,232 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Tue, 21 May 2024 21:21:33 +0800
-Subject: =?utf-8?b?5pu05pawY2hhbmdlbG9n?=
-
----
- ClipboardWindow.qml | 139 +++++++++++++++++++++++++---------------------------
- KToolTip.qml        |  25 ++++++++++
- qml.qrc             |   1 +
- 3 files changed, 92 insertions(+), 73 deletions(-)
- create mode 100644 KToolTip.qml
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 016c8f0..a82832d 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -95,7 +95,7 @@ ApplicationWindow {
-                     source: backend.getIcon(menuBack.restoreIconName);
-                 }
- 
--                ToolTip {
-+                KToolTip {
-                     text: "点击取消格式转换"
-                     visible: restoreBtnArea.containsMouse && backend.originalType != backend.displayedType
-                 }
-@@ -141,7 +141,7 @@ ApplicationWindow {
-                     rotation: buttonMenu.visible ? 180 : 0
-                 }
- 
--                ToolTip {
-+                KToolTip {
-                     text: "更多转换选项"
-                     visible: moreOptionArea.containsMouse && !buttonMenu.visible
-                 }
-@@ -284,92 +284,85 @@ ApplicationWindow {
-             anchors.right: parent.right
-             rightPadding: 8
-             bottomPadding: 12
--            Label {
--                id: cancelButton
--                width: 41
--                height: 32
--                Text {
--                    text: "X"
-+            Rectangle {
-+                id: operateButton
-+                width: 81 + 2 * paddings
-+                height: 32 + 2 * paddings
-+                ShadowComponent {
-+                    visible: true
-                     anchors.fill: parent
--                    elide: Text.ElideRight
--                    textFormat: Text.RichText
--                    verticalAlignment: Text.AlignVCenter
--                    horizontalAlignment: Text.AlignHCenter
-+                    radius: paddings
-+                    shadowWidth: paddings
-                 }
- 
--                ToolTip {
--                    text: "取消"
--                    visible: cancelArea.containsMouse
--                }
-+                Item {
-+                    anchors.right: seperator.left
-+                    anchors.verticalCenter: parent.verticalCenter
-+                    width: 40
-+                    height: 32
-+                    UkuiItems.Icon {
-+                        height: 16
-+                        width: 16
-+                        anchors.centerIn: parent
-+                        source: backend.getIcon("edit-clear-symbolic")
-+                    }
- 
--                background: Rectangle {
--                    width: cancelButton.width-4
--                    height: cancelButton.height-4
--                    anchors.centerIn: parent
--                    radius: 5
--                    color: Qt.rgba(255, 255, 255, 1)
--                    layer.enabled: true;
--                    layer.effect: DropShadow {
--                        radius: 5
--                        samples: 25;
-+                    KToolTip {
-+                        text: "取消"
-+                        visible: cancelArea.containsMouse
-                     }
--                }
- 
--                MouseArea {
--                    id: cancelArea
--                    anchors.fill: parent
--                    hoverEnabled: true
--                    onClicked: {
--                        clipboardWindow.visible = false
-+                    MouseArea {
-+                        id: cancelArea
-+                        anchors.fill: parent
-+                        hoverEnabled: true
-+                        onClicked: {
-+                            clipboardWindow.visible = false
-+                        }
-                     }
-                 }
--            }
- 
--            Label {
--                id: pasteButton
--                width: 41
--                height: 32
--                Text {
--                    text: "\u2713"
--                    anchors.fill: parent
--                    elide: Text.ElideRight
--                    textFormat: Text.RichText
--                    verticalAlignment: Text.AlignVCenter
--                    horizontalAlignment: Text.AlignHCenter
-+                Rectangle {
-+                    id: seperator
-+                    width: 1
-+                    height: 30
-+                    color: Qt.rgba(0, 0, 0, 0.18)
-+                    anchors.centerIn: parent
-                 }
- 
--                ToolTip {
--                    text: "确认粘贴"
--                    visible: confirmArea.containsMouse
--                }
-+                Item {
-+                    id: pasteButton
-+                    anchors.left: seperator.right
-+                    anchors.verticalCenter: parent.verticalCenter
-+                    width: 40
-+                    height: 32
-+                    UkuiItems.Icon {
-+                        height: 16
-+                        width: 16
-+                        anchors.centerIn: parent
-+                        source: backend.getIcon("object-select-symbolic")
-+                    }
- 
--                background: Rectangle {
--                    width: pasteButton.width-4
--                    height: pasteButton.height-4
--                    anchors.centerIn: parent
--                    radius: 5
--                    color: Qt.rgba(255, 255, 255, 1)
--                    layer.enabled: true;
--                    layer.effect: DropShadow {
--                        radius: 5
--                        samples: 25;
-+                    KToolTip {
-+                        text: "确认粘贴"
-+                        visible: confirmArea.containsMouse
-                     }
--                }
- 
--                MouseArea {
--                    id: confirmArea
--                    anchors.fill: parent
--                    hoverEnabled: true
--                    onClicked: {
--                        var currentType = backend.displayedType
--                        // 使用TextEdit自带的函数将文本拷贝到剪切板
--                        if (currentType === ContentType.Image) {
--                            backend.copyToClipboard(currentType)
--                        } else {
--                            stack.currentItem.copyToClipboard()
-+                    MouseArea {
-+                        id: confirmArea
-+                        anchors.fill: parent
-+                        hoverEnabled: true
-+                        onClicked: {
-+                            var currentType = backend.displayedType
-+                            // 使用TextEdit自带的函数将文本拷贝到剪切板
-+                            if (currentType === ContentType.Image) {
-+                                backend.copyToClipboard(currentType)
-+                            } else {
-+                                stack.currentItem.copyToClipboard()
-+                            }
-+                            clipboardWindow.visible = false
-+                            backend.performPasteOperation()
-                         }
--                        clipboardWindow.visible = false
--                        backend.performPasteOperation()
-                     }
-                 }
-             }
-diff --git a/KToolTip.qml b/KToolTip.qml
-new file mode 100644
-index 0000000..8a901ab
---- /dev/null
-+++ b/KToolTip.qml
-@@ -0,0 +1,25 @@
-+import QtQuick 2.15
-+import QtQuick.Controls 2.15
-+
-+import org.ukui.quick.items 1.0 as UkuiItems
-+import org.ukui.quick.platform 1.0 as Platform
-+
-+ToolTip {
-+    id: root
-+    delay: 500
-+    timeout: 5000
-+
-+    contentItem: UkuiItems.StyleText {
-+        text: root.text
-+        wrapMode: Text.WrapAnywhere
-+    }
-+
-+    background: UkuiItems.StyleBackground {
-+        useStyleTransparency: false
-+        paletteRole: Platform.Theme.Base
-+        radius: Platform.Theme.normalRadius
-+        borderColor: Platform.Theme.Text
-+        borderAlpha: 0.1
-+        border.width: 1
-+    }
-+}
-diff --git a/qml.qrc b/qml.qrc
-index 2f7233d..6a47bea 100644
---- a/qml.qrc
-+++ b/qml.qrc
-@@ -5,5 +5,6 @@
-         <file>TextEditArea.qml</file>
-         <file>ShadowComponent.qml</file>
-         <file>ImagePreviewArea.qml</file>
-+        <file>KToolTip.qml</file>
-     </qresource>
- </RCC>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0012-Fix-wayland.patch ukui-clipboard-2.0.0.0/debian/patches/0012-Fix-wayland.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0012-Fix-wayland.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0012-Fix-wayland.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,73 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Thu, 23 May 2024 14:45:07 +0800
-Subject: =?utf-8?b?Rml4OiDkv67lpI13YXlsYW5k546v5aKD5LiL5ou/5LiN5Yiw5Ymq5YiH?=
- =?utf-8?b?5p2/5pWw5o2u55qE6Zeu6aKY?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset="utf-8"
-Content-Transfer-Encoding: 8bit
-
-Fix: 修复复制图片后无法唤出剪切板菜单的问题
----
- FunctionMenuWindow.qml | 5 +++++
- clipboardbackend.cpp   | 4 ++--
- clipboardbackend.h     | 2 +-
- 3 files changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 4df56cc..145d436 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -26,6 +26,11 @@ ApplicationWindow {
-             optionMenu.visible = true
-         }
-     }
-+    onActiveChanged: {
-+        if (active) {
-+            backend.processClipboardData()
-+        }
-+    }
-     onFocusObjectChanged: {
-         if (object === null) {
-             visible = false
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index eee19b4..2721855 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -126,7 +126,8 @@ bool ClipboardBackend::processClipboardData()
-         return false;
-     }
- 
--    if (KWindowSystem::isPlatformX11() && mimeData->html().isEmpty() && mimeData->text().isEmpty()) {
-+    if (KWindowSystem::isPlatformX11() && mimeData->html().isEmpty() && mimeData->text().isEmpty()
-+            && mimeData->urls().size() == 0 && !mimeData->hasImage()) {
-         return false;
-     }
- 
-@@ -156,7 +157,6 @@ bool ClipboardBackend::processClipboardData()
-         QImage image = qvariant_cast<QImage>(mimeData->imageData());
-         this->addImage(image);
-         this->m_plainText = convertImageToPlainText(image);
--        qDebug()<<"图转文"<<m_plainText;
-         setOriginalType(ContentMenu::Image);
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "识别为文本"));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index 4a0e0e7..0ab3fb1 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -48,6 +48,7 @@ public:
-     Q_INVOKABLE QPoint getGlobalMousePosition() const;    
-     Q_INVOKABLE void removeContentMenu(int index);
-     Q_INVOKABLE void showClipboardWindow();
-+    Q_INVOKABLE bool processClipboardData();
- 
- public:
-     InMemoryImageProvider *getImageProvider();
-@@ -58,7 +59,6 @@ private:
-     void clearContentMenu();
-     void addImage(const QImage &image);
-     void clearImages();
--    bool processClipboardData();
-     void monitorShortCut();
-     void showContentMenu();
-     void pasteClicked() const;
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0013-Feat-wayland.patch ukui-clipboard-2.0.0.0/debian/patches/0013-Feat-wayland.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0013-Feat-wayland.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0013-Feat-wayland.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,52 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Thu, 23 May 2024 17:16:43 +0800
-Subject: =?utf-8?b?RmVhdDogd2F5bGFuZOeOr+Wig+S4i+WOu+aOieagh+mimOagjw==?=
-
----
- windowsettings.cpp | 6 +++++-
- windowsettings.h   | 1 +
- 2 files changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/windowsettings.cpp b/windowsettings.cpp
-index 4621b34..e338a8a 100644
---- a/windowsettings.cpp
-+++ b/windowsettings.cpp
-@@ -13,6 +13,7 @@
- 
- WindowSettings::WindowSettings(QObject *parent)
-     : QObject{parent}
-+    , m_isWayland(QGuiApplication::platformName().startsWith(QStringLiteral("wayland")))
- {
-     setSkipTaskbarAndSwitcher();
-     setKeepAbove();
-@@ -29,6 +30,9 @@ void WindowSettings::setKeepAbove()
-                 if (window->title() == title) {
-                     m_windowMap[window] = windowId;
-                     kdk::WindowManager::self()->keepWindowAbove(windowId);
-+                    if (m_isWayland) {
-+                        UKUIDecorationManager::getInstance()->removeHeaderBar(window);
-+                    }
-                 }
-             }
-         }
-@@ -54,7 +58,7 @@ void WindowSettings::removeTitleBar()
-             return;
-         }
- 
--        if (QGuiApplication::platformName().startsWith(QStringLiteral("wayland"))) {
-+        if (m_isWayland) {
-             UKUIDecorationManager::getInstance()->removeHeaderBar(window);
-         } else {
-             MotifWmHints hints;
-diff --git a/windowsettings.h b/windowsettings.h
-index 18bb24d..15b2059 100644
---- a/windowsettings.h
-+++ b/windowsettings.h
-@@ -22,6 +22,7 @@ private:
- signals:
- 
- private:
-+    bool m_isWayland = false;
-     QMap<QWindow*, kdk::WindowId> m_windowMap;
-     QWindow *m_functionMenuWindow = nullptr;
-     QWindow *m_previewWindow = nullptr;
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0014-.patch ukui-clipboard-2.0.0.0/debian/patches/0014-.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0014-.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0014-.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,265 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Fri, 24 May 2024 17:49:31 +0800
-Subject: =?utf-8?b?6YCC6YWN6YOo5YiG5Li76aKY5o6n5Lu2?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset="utf-8"
-Content-Transfer-Encoding: 8bit
-
-Fix: 修复预览窗口可以改变大小的问题
----
- CMakeLists.txt                                 |  2 +-
- ClipboardWindow.qml                            | 16 ++++++++++------
- FunctionMenuWindow.qml                         | 13 +++++++------
- KToolTip.qml                                   | 25 -------------------------
- clipboardbackend.cpp                           |  2 +-
- data.cpp                                       |  2 +-
- main.cpp                                       |  8 ++++----
- qml.qrc                                        |  1 -
- third-party/qtsingleapplication/CMakeLists.txt |  8 ++++----
- 9 files changed, 28 insertions(+), 49 deletions(-)
- delete mode 100644 KToolTip.qml
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index ab3b8dc..05c85d8 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -81,7 +81,7 @@ target_link_libraries(ukui-clipboard PRIVATE
-     KF5::WindowSystem
-     KF5::CoreAddons
-     KF5::GlobalAccel
--    qtsingleguiapplication
-+    qtsingleapplication
-     Xtst
-     kylin-ai-base
-     ${X11_LIBRARIES}
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index a82832d..acc85ba 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -19,6 +19,10 @@ ApplicationWindow {
-     property int windowRadius: 18
-     width: windowWidth
-     height: windowHeight
-+    maximumWidth: width
-+    maximumHeight: height
-+    minimumWidth: width
-+    minimumHeight: height
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
-     onVisibleChanged: {
-@@ -95,9 +99,9 @@ ApplicationWindow {
-                     source: backend.getIcon(menuBack.restoreIconName);
-                 }
- 
--                KToolTip {
-+                ToolTip {
-                     text: "点击取消格式转换"
--                    visible: restoreBtnArea.containsMouse && backend.originalType != backend.displayedType
-+                    visible: restoreBtnArea.containsMouse && backend.originalType !== backend.displayedType
-                 }
- 
-                 MouseArea {
-@@ -141,7 +145,7 @@ ApplicationWindow {
-                     rotation: buttonMenu.visible ? 180 : 0
-                 }
- 
--                KToolTip {
-+                ToolTip {
-                     text: "更多转换选项"
-                     visible: moreOptionArea.containsMouse && !buttonMenu.visible
-                 }
-@@ -304,10 +308,10 @@ ApplicationWindow {
-                         height: 16
-                         width: 16
-                         anchors.centerIn: parent
--                        source: backend.getIcon("edit-clear-symbolic")
-+                        source: backend.getIcon("application-exit-symbolic")
-                     }
- 
--                    KToolTip {
-+                    ToolTip {
-                         text: "取消"
-                         visible: cancelArea.containsMouse
-                     }
-@@ -343,7 +347,7 @@ ApplicationWindow {
-                         source: backend.getIcon("object-select-symbolic")
-                     }
- 
--                    KToolTip {
-+                    ToolTip {
-                         text: "确认粘贴"
-                         visible: confirmArea.containsMouse
-                     }
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 145d436..7ff32af 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -2,6 +2,7 @@ import QtQuick 2.15
- import QtQuick.Window 2.15
- import QtQuick.Controls 2.15
- import ContentMenu 1.0
-+import org.ukui.quick.platform 1.0 as Platform
- 
- ApplicationWindow {
-     id: contentWindow
-@@ -44,6 +45,11 @@ ApplicationWindow {
-         width: parent.width
-         visible: true
-         currentIndex: -1
-+        background: Rectangle {
-+            anchors.fill: parent
-+            color: "white"
-+            radius: Platform.Theme.windowRadius
-+        }
-         onVisibleChanged: {
-             if (!visible) {
-                 contentWindow.visible = false
-@@ -64,9 +70,8 @@ ApplicationWindow {
-                     verticalAlignment: Text.AlignVCenter
-                     leftPadding: paddings * 2
-                 }
--                background: Rectangle {
-+                background: Item {
-                     anchors.fill: menuItem
--                    color: "white"
-                     Rectangle {
-                         width: parent.width - paddings * 2
-                         height: parent.height - paddings * 2
-@@ -101,7 +106,3 @@ ApplicationWindow {
-         }
-     }
- }
--
--
--
--
-diff --git a/KToolTip.qml b/KToolTip.qml
-deleted file mode 100644
-index 8a901ab..0000000
---- a/KToolTip.qml
-+++ /dev/null
-@@ -1,25 +0,0 @@
--import QtQuick 2.15
--import QtQuick.Controls 2.15
--
--import org.ukui.quick.items 1.0 as UkuiItems
--import org.ukui.quick.platform 1.0 as Platform
--
--ToolTip {
--    id: root
--    delay: 500
--    timeout: 5000
--
--    contentItem: UkuiItems.StyleText {
--        text: root.text
--        wrapMode: Text.WrapAnywhere
--    }
--
--    background: UkuiItems.StyleBackground {
--        useStyleTransparency: false
--        paletteRole: Platform.Theme.Base
--        radius: Platform.Theme.normalRadius
--        borderColor: Platform.Theme.Text
--        borderAlpha: 0.1
--        border.width: 1
--    }
--}
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 2721855..ec4b90f 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -41,7 +41,7 @@ void ClipboardBackend::setDisplayedType(int type)
- 
-     switch (m_displayedType) {
-     case ContentMenu::PlainText:
--        m_displayedIconName = "ukui-screenshot-text-symbolic";
-+        m_displayedIconName = "ukui-idtext-symbolic";
-         break;
-     case ContentMenu::RichText:
-         m_displayedIconName = "ukui-idtext-symbolic";
-diff --git a/data.cpp b/data.cpp
-index c949ae1..108a4d9 100644
---- a/data.cpp
-+++ b/data.cpp
-@@ -4,7 +4,7 @@ ContentMenu::ContentMenu(ContentType contentType, const QString &itemName, QObje
-     : m_contentType(contentType), m_itemName(itemName), QObject(parent) {
-     switch (contentType) {
-     case ContentType::PlainText:
--        m_iconName = "ukui-screenshot-text-symbolic";
-+        m_iconName = "ukui-idtext-symbolic";
-         break;
-     case ContentType::RichText:
-         m_iconName = "ukui-idtext-symbolic";
-diff --git a/main.cpp b/main.cpp
-index 005302a..d1f194c 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -8,7 +8,7 @@
- #include <QDebug>
- 
- 
--#include "qtsingleguiapplication.h"
-+#include "qtsingleapplication.h"
- #include "clipboardbackend.h"
- #include "windowsettings.h"
- 
-@@ -17,7 +17,7 @@ int main(int argc, char *argv[])
- 
-     QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
- 
--    QtSingleGuiApplication app(argc, argv);
-+    QtSingleApplication app(argc, argv);
-     QCommandLineParser parser;
-     QCommandLineOption showWorkSpaceOption("show-menu","show contentMenu");
-     parser.addOption(showWorkSpaceOption);
-@@ -25,7 +25,7 @@ int main(int argc, char *argv[])
-     if (app.isRunning())
-     {
-         if (parser.isSet("show-menu")) {
--            app.sendMessage(QGuiApplication::arguments().length() > 1 ? QGuiApplication::arguments().at(1) : app.applicationFilePath());
-+            app.sendMessage(QApplication::arguments().length() > 1 ? QApplication::arguments().at(1) : app.applicationFilePath());
-         }
-         return EXIT_SUCCESS;
-     }
-@@ -36,7 +36,7 @@ int main(int argc, char *argv[])
-         "Not be instantiated in QML, we should only pass the enum types to QML "
-         "!");
-     ClipboardBackend backend;
--    QObject::connect(&app, &QtSingleGuiApplication::messageReceived, [&backend](){
-+    QObject::connect(&app, &QtSingleApplication::messageReceived, [&backend](){
-         backend.open();
-     });
- 
-diff --git a/qml.qrc b/qml.qrc
-index 6a47bea..2f7233d 100644
---- a/qml.qrc
-+++ b/qml.qrc
-@@ -5,6 +5,5 @@
-         <file>TextEditArea.qml</file>
-         <file>ShadowComponent.qml</file>
-         <file>ImagePreviewArea.qml</file>
--        <file>KToolTip.qml</file>
-     </qresource>
- </RCC>
-diff --git a/third-party/qtsingleapplication/CMakeLists.txt b/third-party/qtsingleapplication/CMakeLists.txt
-index 0a4b452..784cb47 100644
---- a/third-party/qtsingleapplication/CMakeLists.txt
-+++ b/third-party/qtsingleapplication/CMakeLists.txt
-@@ -1,13 +1,13 @@
- cmake_minimum_required(VERSION 3.16)
--project(qtsingleguiapplication)
-+project(qtsingleapplication)
- 
- find_package(Qt5 COMPONENTS
--        Core Gui Network
-+        Core Gui Widgets Network
-         REQUIRED)
- 
- include_directories(src)
--set(SRCS src/qtsingleguiapplication.h src/qtsingleguiapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
-+set(SRCS src/qtsingleapplication.h src/qtsingleapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
- 
- add_library(${PROJECT_NAME} STATIC ${SRCS})
- target_include_directories(${PROJECT_NAME} PRIVATE src)
--target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Network)
-+target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network)
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0015-.patch ukui-clipboard-2.0.0.0/debian/patches/0015-.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0015-.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0015-.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,27 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Fri, 24 May 2024 17:49:31 +0800
-Subject: =?utf-8?b?6YCC6YWN6YOo5YiG5Li76aKY5o6n5Lu2?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset="utf-8"
-Content-Transfer-Encoding: 8bit
-
-Fix: 修复预览窗口可以改变大小的问题
----
- FunctionMenuWindow.qml | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 7ff32af..277d2e4 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -8,6 +8,10 @@ ApplicationWindow {
-     id: contentWindow
-     width: 140
-     height: optionMenu.contentHeight
-+    maximumWidth: width
-+    maximumHeight: height
-+    minimumWidth: width
-+    minimumHeight: height
-     title: "Function Menu Window"
-     property int paddings: 4
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0016-Fix.patch ukui-clipboard-2.0.0.0/debian/patches/0016-Fix.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0016-Fix.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0016-Fix.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,61 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Sat, 25 May 2024 15:25:25 +0800
-Subject: =?utf-8?b?Rml4OiDlpI3liLblpJrlvKDlm77niYfljp/lp4vnspjotLTlj6rmnIk=?=
- =?utf-8?b?5LiA5byg5Zu+54mH?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset="utf-8"
-Content-Transfer-Encoding: 8bit
-
-Fix: 表格转为截图粘贴后图片背景是透明的
----
- FunctionMenuWindow.qml | 6 ------
- utils.cpp              | 4 ++--
- 2 files changed, 2 insertions(+), 8 deletions(-)
-
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 277d2e4..795965b 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -9,9 +9,7 @@ ApplicationWindow {
-     width: 140
-     height: optionMenu.contentHeight
-     maximumWidth: width
--    maximumHeight: height
-     minimumWidth: width
--    minimumHeight: height
-     title: "Function Menu Window"
-     property int paddings: 4
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-@@ -89,10 +87,6 @@ ApplicationWindow {
-                     optionMenu.currentIndex = -1
-                     var currentType =  backend.contentMenus[index].contentType
-                     if (currentType === ContentType.Original) {
--                        // 复制的是图片地址时,需要将图片拷贝到剪切板再复制
--                        if (backend.originalType === ContentType.Image) {
--                            backend.copyToClipboard(ContentType.Image)
--                        }
-                         backend.performPasteOperation()
-                     } else {
-                         backend.setDisplayedType(currentType)
-diff --git a/utils.cpp b/utils.cpp
-index 315099f..1c9ad2f 100644
---- a/utils.cpp
-+++ b/utils.cpp
-@@ -19,7 +19,7 @@ QImage convertPlainTextToImage(const QString& plainText)
-     textDocument.setPlainText(plainText);
-     // 创建图片对象,并设置大小
-     QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
--    image.fill(Qt::transparent);
-+    image.fill(Qt::white);
-     // 创建绘图对象
-     QPainter painter(&image);
-     // 渲染富文本数据到图片中
-@@ -34,7 +34,7 @@ QImage convertRichTextToImage(const QString& richText)
-     textDocument.setHtml(richText);
-     // 创建图片对象,并设置大小
-     QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
--    image.fill(Qt::transparent);
-+    image.fill(Qt::white);
-     // 创建绘图对象
-     QPainter painter(&image);
-     // 渲染富文本数据到图片中
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0017-follow-theme.patch ukui-clipboard-2.0.0.0/debian/patches/0017-follow-theme.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0017-follow-theme.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0017-follow-theme.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,224 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Sat, 25 May 2024 18:04:22 +0800
-Subject: follow theme
-
----
- ClipboardWindow.qml    | 40 ++++++++++++++++++++--------------------
- FunctionMenuWindow.qml |  2 +-
- TextEditArea.qml       |  2 +-
- clipboardbackend.cpp   | 10 +++++-----
- clipboardbackend.h     | 10 +++++-----
- 5 files changed, 32 insertions(+), 32 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index acc85ba..beeb704 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -4,6 +4,7 @@ import QtQuick.Window 2.15
- import QtQuick.Controls 2.15
- import QtQuick.Layouts 1.15
- import org.ukui.quick.items 1.0 as UkuiItems
-+import org.ukui.quick.platform 1.0 as Platform
- import ContentMenu 1.0
- 
- ApplicationWindow {
-@@ -17,6 +18,8 @@ ApplicationWindow {
-     property int maxContentWidth: 540
-     property int maxContentHeight: 360
-     property int windowRadius: 18
-+    property var themeColor: Platform.Theme.themeColor
-+    property var highlightColor: Platform.Theme.color(Platform.Theme.Highlight, Platform.Theme.Active, 1)
-     width: windowWidth
-     height: windowHeight
-     maximumWidth: width
-@@ -32,11 +35,15 @@ ApplicationWindow {
-             clipboardWindow.y = (Screen.height - clipboardWindow.height) / 2
-             // 删除下拉菜单里多余的选项并切换到指定界面
-             buttonMenu.removeItem();
--            var currentType = backend.displayedType
-+            var currentType = backend.displayingType
-             stack.switchToSpecifiedPage(currentType)
-         }
-     }
- 
-+    onThemeColorChanged: {
-+        highlightColor = Platform.Theme.color(Platform.Theme.Highlight, Platform.Theme.Active, 1)
-+    }
-+
-     Connections {
-         target: backend
-         function onClipboardWindowVisibleChanged(visible) {
-@@ -88,8 +95,7 @@ ApplicationWindow {
-                 radius: width / 2
-                 border.width: 1
-                 border.color: Qt.rgba(255, 255, 255, 0.05)
--                color: Qt.rgba(55/255, 144/255, 250/255, 0.8)
--
-+                color: highlightColor
-                 // 深色主题下反色
-                 UkuiItems.Icon {
-                     height: 14
-@@ -100,30 +106,25 @@ ApplicationWindow {
-                 }
- 
-                 ToolTip {
--                    text: "点击取消格式转换"
--                    visible: restoreBtnArea.containsMouse && backend.originalType !== backend.displayedType
-+                    text: backend.displayingType !== backend.originalType ? "点击取消格式转换" : "点击切换为原格式粘贴预览"
-+                    visible: restoreBtnArea.containsMouse
-                 }
- 
-                 MouseArea {
-                     id: restoreBtnArea
-                     anchors.fill: parent
-                     hoverEnabled: true
--                    onEntered: {
--                        restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 1)
--                    }
--                    onExited: {
--                        restoreBtn.color = Qt.rgba(55/255, 144/255, 250/255, 0.8)
--                    }
-                     onClicked: {
-                         var originalType = backend.originalType
--                        if (originalType === backend.displayedType){
-+                        if (originalType === backend.displayingType){
-+                            // setDisplayingType和switchToSpecifiedPage对顺序有要求
-+                            backend.setDisplayingType(menuBack.lastDisplayedType)
-                             stack.switchToSpecifiedPage(menuBack.lastDisplayedType)
--                            backend.setDisplayedType(menuBack.lastDisplayedType)
-                             return
-                         }
- 
--                        menuBack.lastDisplayedType = backend.displayedType
--                        backend.setDisplayedType(originalType)
-+                        menuBack.lastDisplayedType = backend.displayingType
-+                        backend.setDisplayingType(originalType)
-                         stack.switchToSpecifiedPage(originalType)
-                     }
-                 }
-@@ -238,11 +239,10 @@ ApplicationWindow {
-                         }
-                         onTriggered: {
-                             var currentType = backend.contentMenus[index].contentType
--                            if (currentType === backend.displayedType){
-+                            if (currentType === backend.displayingType){
-                                 return
-                             }
--
--                            backend.setDisplayedType(currentType)
-+                            backend.setDisplayingType(currentType)
-                             stack.switchToSpecifiedPage(currentType)
-                         }
-                     }
-@@ -348,7 +348,7 @@ ApplicationWindow {
-                     }
- 
-                     ToolTip {
--                        text: "确认粘贴"
-+                        text: "确定粘贴"
-                         visible: confirmArea.containsMouse
-                     }
- 
-@@ -357,7 +357,7 @@ ApplicationWindow {
-                         anchors.fill: parent
-                         hoverEnabled: true
-                         onClicked: {
--                            var currentType = backend.displayedType
-+                            var currentType = backend.displayingType
-                             // 使用TextEdit自带的函数将文本拷贝到剪切板
-                             if (currentType === ContentType.Image) {
-                                 backend.copyToClipboard(currentType)
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 795965b..52b0df5 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -89,7 +89,7 @@ ApplicationWindow {
-                     if (currentType === ContentType.Original) {
-                         backend.performPasteOperation()
-                     } else {
--                        backend.setDisplayedType(currentType)
-+                        backend.setDisplayingType(currentType)
-                         backend.showClipboardWindow()
-                     }
-                 }
-diff --git a/TextEditArea.qml b/TextEditArea.qml
-index c2d74c8..98c69d8 100644
---- a/TextEditArea.qml
-+++ b/TextEditArea.qml
-@@ -40,7 +40,7 @@ Item {
-                 }
-                 Component.onCompleted: {
-                     // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
--                    if (backend.originalType === ContentType.Image && backend.displayedType === ContentType.PlainText) {
-+                    if (backend.originalType === ContentType.Image && backend.displayingType === ContentType.PlainText) {
-                         text = backend.plainText
-                     } else {
-                         this.clear()
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index ec4b90f..5aa2b83 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -30,16 +30,16 @@ ClipboardBackend::ClipboardBackend(QObject *parent)
-     connect(&m_timer, &QTimer::timeout, this, &ClipboardBackend::pasteClicked);
- }
- 
--void ClipboardBackend::setDisplayedType(int type)
-+void ClipboardBackend::setDisplayingType(int type)
- {
--    if (m_displayedType == type) {
-+    if (m_displayingType == type) {
-         return;
-     }
- 
--    m_displayedType = type;
--    emit displayedTypeChanged();
-+    m_displayingType = type;
-+    emit displayingTypeChanged();
- 
--    switch (m_displayedType) {
-+    switch (m_displayingType) {
-     case ContentMenu::PlainText:
-         m_displayedIconName = "ukui-idtext-symbolic";
-         break;
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index 0ab3fb1..84215a1 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -12,7 +12,7 @@ class ClipboardBackend : public QObject
- {
-     Q_OBJECT
-     Q_PROPERTY(QVariant contentMenus READ contentMenus NOTIFY contentMenusChanged)
--    Q_PROPERTY(int displayedType READ displayedType WRITE setDisplayedType NOTIFY displayedTypeChanged)
-+    Q_PROPERTY(int displayingType READ displayingType WRITE setDisplayingType NOTIFY displayingTypeChanged)
-     Q_PROPERTY(QString displayedIconName READ displayedIconName NOTIFY displayedIconNameChanged)
-     Q_PROPERTY(int originalType READ originalType WRITE setOriginalType NOTIFY originalTypeChanged)
-     Q_PROPERTY(QSize imageSize READ imageSize WRITE setImageSize NOTIFY imageSizeChanged)
-@@ -22,8 +22,8 @@ public:
-     explicit ClipboardBackend(QObject *parent = nullptr);
-     QVariant contentMenus() const { return QVariant::fromValue(m_contentMenus); }
- 
--    int displayedType() { return m_displayedType; }
--    Q_INVOKABLE void setDisplayedType(int type);
-+    int displayingType() { return m_displayingType; }
-+    Q_INVOKABLE void setDisplayingType(int type);
- 
-     int originalType() { return m_originalType; }
-     Q_INVOKABLE void setOriginalType(int type);
-@@ -67,7 +67,7 @@ signals:
-     void contentMenusChanged();
-     void richTextChanged();
-     void plainTextChanged();
--    void displayedTypeChanged();
-+    void displayingTypeChanged();
-     void displayedIconNameChanged();
-     void originalTypeChanged();
-     void imageSizeChanged();
-@@ -76,7 +76,7 @@ signals:
- 
- private:
-     QList<QObject*> m_contentMenus;
--    int m_displayedType;
-+    int m_displayingType;
-     int m_originalType;
-     QSize m_imageSize;
-     QString m_richText;
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0018-update-changelog.patch ukui-clipboard-2.0.0.0/debian/patches/0018-update-changelog.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0018-update-changelog.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0018-update-changelog.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,30 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Sat, 25 May 2024 22:55:12 +0800
-Subject: update changelog
-
----
- ClipboardWindow.qml | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index beeb704..b690f34 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -94,14 +94,14 @@ ApplicationWindow {
-                 height: 28
-                 radius: width / 2
-                 border.width: 1
--                border.color: Qt.rgba(255, 255, 255, 0.05)
--                color: highlightColor
-+                border.color: Qt.rgba(0, 0, 0, 0.05)
-+                color: backend.displayingType !== backend.originalType ? highlightColor : Qt.rgba(0, 0, 0, 0.03)
-                 // 深色主题下反色
-                 UkuiItems.Icon {
-                     height: 14
-                     width: 14
-                     anchors.centerIn: parent
--                    mode: UkuiItems.Icon.ForceHighlight
-+                    mode: backend.displayingType !== backend.originalType ? UkuiItems.Icon.Highlight : UkuiItems.Icon.Normal
-                     source: backend.getIcon(menuBack.restoreIconName);
-                 }
- 
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0019-Fix-I9S87E-wayland.patch ukui-clipboard-2.0.0.0/debian/patches/0019-Fix-I9S87E-wayland.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0019-Fix-I9S87E-wayland.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0019-Fix-I9S87E-wayland.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,35 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Mon, 27 May 2024 10:57:04 +0800
-Subject: =?utf-8?b?Rml4ICNJOVM4N0U6IHdheWxhbmTkuIvoj5zljZXnqpflj6Ppmo/nnYA=?=
- =?utf-8?b?5ZSk5Ye65Ymq5YiH5p2/6I+c5Y2V5qyh5pWw55qE5aKe5Yqg6ICM6LaK5p2l6LaK?=
- =?utf-8?b?6auY?=
-
----
- FunctionMenuWindow.qml | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 52b0df5..2784eff 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -7,9 +7,11 @@ import org.ukui.quick.platform 1.0 as Platform
- ApplicationWindow {
-     id: contentWindow
-     width: 140
--    height: optionMenu.contentHeight
-     maximumWidth: width
-     minimumWidth: width
-+    maximumHeight: optionMenu.minContextHeight
-+    minimumHeight: maximumHeight
-+    height: maximumHeight
-     title: "Function Menu Window"
-     property int paddings: 4
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-@@ -47,6 +49,7 @@ ApplicationWindow {
-         width: parent.width
-         visible: true
-         currentIndex: -1
-+        property int minContextHeight: contentHeight < 35 ? 35 : contentHeight
-         background: Rectangle {
-             anchors.fill: parent
-             color: "white"
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0020-enter.patch ukui-clipboard-2.0.0.0/debian/patches/0020-enter.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0020-enter.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0020-enter.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,75 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Wed, 29 May 2024 10:44:56 +0800
-Subject: =?utf-8?b?5aKe5YqgZW50ZXLplK7nspjotLTlip/og70=?=
-
----
- ClipboardWindow.qml | 37 ++++++++++++++++++++++++-------------
- 1 file changed, 24 insertions(+), 13 deletions(-)
-
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index b690f34..4428877 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -79,6 +79,13 @@ ApplicationWindow {
-         clip : true
-         property int lastDisplayedType: -1
-         property string restoreIconName: backend.displayedIconName
-+        focus: true
-+        Keys.enabled: true
-+        Keys.onPressed: {
-+            if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter){
-+                pasteButton.pasted();
-+            }
-+        }
- 
-         Row {
-             id: topLine
-@@ -250,10 +257,10 @@ ApplicationWindow {
- 
-                 function removeItem() {
-                     for (var i = 0; i < control.model.length; i++) {
--                         if(control.model[i].contentType === ContentType.Original) {
--                             backend.removeContentMenu(i); // 删除项
--                             break; // 只删除第一个匹配的项
--                         }
-+                        if(control.model[i].contentType === ContentType.Original) {
-+                            backend.removeContentMenu(i); // 删除项
-+                            break; // 只删除第一个匹配的项
-+                        }
-                     }
-                 }
-             }
-@@ -352,20 +359,24 @@ ApplicationWindow {
-                         visible: confirmArea.containsMouse
-                     }
- 
-+                    function pasted() {
-+                        var currentType = backend.displayingType
-+                        // 使用TextEdit自带的函数将文本拷贝到剪切板
-+                        if (currentType === ContentType.Image) {
-+                            backend.copyToClipboard(currentType)
-+                        } else {
-+                            stack.currentItem.copyToClipboard()
-+                        }
-+                        clipboardWindow.visible = false
-+                        backend.performPasteOperation()
-+                    }
-+
-                     MouseArea {
-                         id: confirmArea
-                         anchors.fill: parent
-                         hoverEnabled: true
-                         onClicked: {
--                            var currentType = backend.displayingType
--                            // 使用TextEdit自带的函数将文本拷贝到剪切板
--                            if (currentType === ContentType.Image) {
--                                backend.copyToClipboard(currentType)
--                            } else {
--                                stack.currentItem.copyToClipboard()
--                            }
--                            clipboardWindow.visible = false
--                            backend.performPasteOperation()
-+                            pasteButton.pasted();
-                         }
-                     }
-                 }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0021-.patch ukui-clipboard-2.0.0.0/debian/patches/0021-.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0021-.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0021-.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,1018 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Wed, 5 Jun 2024 09:30:02 +0800
-Subject: =?utf-8?b?5a6e546w5Zu96ZmF5YyW5Yqf6IO9?=
-
----
- CMakeLists.txt            | 29 +++++++++++++++++++
- ClipboardWindow.qml       |  8 ++---
- clipboardbackend.cpp      | 18 ++++++------
- main.cpp                  | 11 +++++++
- qml.qrc                   | 10 +++++++
- ukui-clipboard_bo_CN.ts   | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_de.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_es.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_fr.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_kk.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_ky.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_mn.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_ug.ts      | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_zh_CN.ts   | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- ukui-clipboard_zh_Hant.ts | 74 +++++++++++++++++++++++++++++++++++++++++++++++
- 15 files changed, 803 insertions(+), 13 deletions(-)
- create mode 100644 ukui-clipboard_bo_CN.ts
- create mode 100644 ukui-clipboard_de.ts
- create mode 100644 ukui-clipboard_es.ts
- create mode 100644 ukui-clipboard_fr.ts
- create mode 100644 ukui-clipboard_kk.ts
- create mode 100644 ukui-clipboard_ky.ts
- create mode 100644 ukui-clipboard_mn.ts
- create mode 100644 ukui-clipboard_ug.ts
- create mode 100644 ukui-clipboard_zh_CN.ts
- create mode 100644 ukui-clipboard_zh_Hant.ts
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 05c85d8..247669e 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -37,6 +37,33 @@ find_package(X11 REQUIRED)
- find_package(PkgConfig REQUIRED)
- find_package(ukui-quick COMPONENTS platform REQUIRED)
- 
-+#translation
-+find_package(QT NAMES Qt6 Qt5 COMPONENTS LinguistTools REQUIRED)
-+find_package(Qt${QT_VERSION_MAJOR} COMPONENTS LinguistTools REQUIRED)
-+
-+set(TS_FILES)
-+set(QM_FILES)
-+
-+file(GLOB QML_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*")
-+
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_zh_CN.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_bo_CN.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_zh_Hant.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_ug.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_mn.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_ky.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_kk.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_fr.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_es.ts)
-+list(APPEND TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/ukui-clipboard_de.ts)
-+
-+set_source_files_properties(${TS_FILES}
-+    PROPERTIES OUTPUT_LOCATION ${CMAKE_CURRENT_SOURCE_DIR})
-+
-+qt5_create_translation(QM_FILES ${TS_FILES} ${QML_FILES})
-+add_custom_target(lupdate_task DEPENDS ${TS_FILES})
-+add_custom_target(lrelease_task DEPENDS ${QM_FILES})
-+
- set(EXTERNAL_LIBS "")
- set(PC_PKGS kysdk-waylandhelper)
- foreach(external_lib IN ITEMS ${PC_PKGS})
-@@ -54,6 +81,7 @@ if(ANDROID)
-     add_library(ukui-clipboard SHARED
-       main.cpp
-       qml.qrc
-+      ${QM_FILES}
-     )
- else()
-     add_executable(ukui-clipboard
-@@ -67,6 +95,7 @@ else()
-       windowsettings.cpp
-       windowsettings.h
-       qml.qrc
-+      ${QM_FILES}
-     )
- endif()
- 
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 4428877..89ea404 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -113,7 +113,7 @@ ApplicationWindow {
-                 }
- 
-                 ToolTip {
--                    text: backend.displayingType !== backend.originalType ? "点击取消格式转换" : "点击切换为原格式粘贴预览"
-+                    text: backend.displayingType !== backend.originalType ? qsTr("click to cancel conversion") : qsTr("click to switch to the original format")
-                     visible: restoreBtnArea.containsMouse
-                 }
- 
-@@ -154,7 +154,7 @@ ApplicationWindow {
-                 }
- 
-                 ToolTip {
--                    text: "更多转换选项"
-+                    text: qsTr("more options")
-                     visible: moreOptionArea.containsMouse && !buttonMenu.visible
-                 }
- 
-@@ -319,7 +319,7 @@ ApplicationWindow {
-                     }
- 
-                     ToolTip {
--                        text: "取消"
-+                        text: qsTr("cancel")
-                         visible: cancelArea.containsMouse
-                     }
- 
-@@ -355,7 +355,7 @@ ApplicationWindow {
-                     }
- 
-                     ToolTip {
--                        text: "确定粘贴"
-+                        text: qsTr("confirm pasting")
-                         visible: confirmArea.containsMouse
-                     }
- 
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 5aa2b83..22866b2 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -143,29 +143,29 @@ bool ClipboardBackend::processClipboardData()
-         this->addImage(image);
-         this->m_plainText = convertImageToPlainText(image);
-         setOriginalType(ContentMenu::Image);
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "识别为文本"));
--        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
-     } else if (mimeData->hasHtml()) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
-         this->addImage(convertRichTextToImage(this->m_richText));
--        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为截图"));
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "转为纯文本"));
--        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Image, tr("convert to picture")));
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("convert to plaintext")));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
-     } else if (mimeData->hasImage()) {
-         QImage image = qvariant_cast<QImage>(mimeData->imageData());
-         this->addImage(image);
-         this->m_plainText = convertImageToPlainText(image);
-         setOriginalType(ContentMenu::Image);
--        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, "识别为文本"));
--        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
-     } else {
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::PlainText);
-         this->addImage(convertPlainTextToImage(this->m_plainText));
--        this->addContentMenu(new ContentMenu(ContentMenu::Image, "转为截图"));
--        this->addContentMenu(new ContentMenu(ContentMenu::Original, "原始粘贴"));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Image,tr("convert to picture")));
-+        this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
-     }
-     return true;
- }
-diff --git a/main.cpp b/main.cpp
-index d1f194c..8e2c1c1 100644
---- a/main.cpp
-+++ b/main.cpp
-@@ -5,6 +5,7 @@
- #include <QCommandLineOption>
- #include <QCommandLineParser>
- #include <QQuickWindow>
-+#include <QTranslator>
- #include <QDebug>
- 
- 
-@@ -30,6 +31,16 @@ int main(int argc, char *argv[])
-         return EXIT_SUCCESS;
-     }
- 
-+    QTranslator translator;
-+    if (!translator.load(QLocale::system(), QLatin1String("ukui-clipboard"),QLatin1String("_"), QLatin1String(":/"))){
-+        // 如果指定语言的翻译文件未找到,尝试加载默认的翻译文件
-+        if (!translator.load(QString("ukui-clipboard"))) {
-+            qWarning() << "Failed to load translation files!";
-+        }
-+    }
-+
-+    app.installTranslator(&translator);
-+
-     QQmlApplicationEngine engine;
-     qmlRegisterUncreatableType<ContentMenu>(
-         "ContentMenu", 1, 0, "ContentType",
-diff --git a/qml.qrc b/qml.qrc
-index 2f7233d..40aed8a 100644
---- a/qml.qrc
-+++ b/qml.qrc
-@@ -5,5 +5,15 @@
-         <file>TextEditArea.qml</file>
-         <file>ShadowComponent.qml</file>
-         <file>ImagePreviewArea.qml</file>
-+        <file>ukui-clipboard_zh_Hant.qm</file>
-+        <file>ukui-clipboard_zh_CN.qm</file>
-+        <file>ukui-clipboard_ug.qm</file>
-+        <file>ukui-clipboard_mn.qm</file>
-+        <file>ukui-clipboard_ky.qm</file>
-+        <file>ukui-clipboard_kk.qm</file>
-+        <file>ukui-clipboard_fr.qm</file>
-+        <file>ukui-clipboard_es.qm</file>
-+        <file>ukui-clipboard_de.qm</file>
-+        <file>ukui-clipboard_bo_CN.qm</file>
-     </qresource>
- </RCC>
-diff --git a/ukui-clipboard_bo_CN.ts b/ukui-clipboard_bo_CN.ts
-new file mode 100644
-index 0000000..4a01c24
---- /dev/null
-+++ b/ukui-clipboard_bo_CN.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="bo_CN">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_de.ts b/ukui-clipboard_de.ts
-new file mode 100644
-index 0000000..bf21ca8
---- /dev/null
-+++ b/ukui-clipboard_de.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="de_DE">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_es.ts b/ukui-clipboard_es.ts
-new file mode 100644
-index 0000000..42c3519
---- /dev/null
-+++ b/ukui-clipboard_es.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="es_ES">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_fr.ts b/ukui-clipboard_fr.ts
-new file mode 100644
-index 0000000..f083d05
---- /dev/null
-+++ b/ukui-clipboard_fr.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="fr_FR">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_kk.ts b/ukui-clipboard_kk.ts
-new file mode 100644
-index 0000000..7e8c6b5
---- /dev/null
-+++ b/ukui-clipboard_kk.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="kk_KZ">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_ky.ts b/ukui-clipboard_ky.ts
-new file mode 100644
-index 0000000..fe67dd2
---- /dev/null
-+++ b/ukui-clipboard_ky.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="ky_KG">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_mn.ts b/ukui-clipboard_mn.ts
-new file mode 100644
-index 0000000..d56c282
---- /dev/null
-+++ b/ukui-clipboard_mn.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="mn_MN">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_ug.ts b/ukui-clipboard_ug.ts
-new file mode 100644
-index 0000000..37da404
---- /dev/null
-+++ b/ukui-clipboard_ug.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="ug_CN">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_zh_CN.ts b/ukui-clipboard_zh_CN.ts
-new file mode 100644
-index 0000000..c3411d5
---- /dev/null
-+++ b/ukui-clipboard_zh_CN.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="zh_CN">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation>识别为文本</translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation>转为截图</translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation>转为纯文本</translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation>原始粘贴</translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation>原始粘贴</translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation>转为截图</translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation>转为纯文本</translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation>点击取消格式转换</translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation>点击切换为原格式粘贴预览</translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation>更多转换选项</translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation>取消</translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation>确定粘贴</translation>
-+    </message>
-+</context>
-+</TS>
-diff --git a/ukui-clipboard_zh_Hant.ts b/ukui-clipboard_zh_Hant.ts
-new file mode 100644
-index 0000000..0d1e5ab
---- /dev/null
-+++ b/ukui-clipboard_zh_Hant.ts
-@@ -0,0 +1,74 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<!DOCTYPE TS>
-+<TS version="2.1" language="zh_TW">
-+<context>
-+    <name>ClipboardBackend</name>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="146"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <source>text recognition</source>
-+        <oldsource>convert text</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="153"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <source>convert to picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <source>convert to plaintext</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>pasted</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="147"/>
-+        <location filename="clipboardbackend.cpp" line="155"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <source>original paste</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert picture</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <source>convert plaintext</source>
-+        <oldsource>convert richtext</oldsource>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+<context>
-+    <name>ClipboardWindow</name>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to cancel conversion</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="116"/>
-+        <source>click to switch to the original format</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="157"/>
-+        <source>more options</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="322"/>
-+        <source>cancel</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="ClipboardWindow.qml" line="358"/>
-+        <source>confirm pasting</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+</context>
-+</TS>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0022-wayland-tip.patch ukui-clipboard-2.0.0.0/debian/patches/0022-wayland-tip.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0022-wayland-tip.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0022-wayland-tip.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,720 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Tue, 11 Jun 2024 13:58:48 +0800
-Subject: =?utf-8?b?d2F5bGFuZOeOr+Wig+eymOi0tOaXtuWinuWKoHRpcOaPkOekug==?=
-
----
- CMakeLists.txt            |  2 +-
- clipboardbackend.cpp      | 13 +++++++++++++
- clipboardbackend.h        |  4 ++++
- ukui-clipboard_bo_CN.ts   | 34 +++++++++++++---------------------
- ukui-clipboard_de.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_es.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_fr.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_kk.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_ky.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_mn.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_ug.ts      | 34 +++++++++++++---------------------
- ukui-clipboard_zh_CN.ts   | 27 ++++++++++++++++-----------
- ukui-clipboard_zh_Hant.ts | 34 +++++++++++++---------------------
- 13 files changed, 151 insertions(+), 201 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 247669e..c512635 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -65,7 +65,7 @@ add_custom_target(lupdate_task DEPENDS ${TS_FILES})
- add_custom_target(lrelease_task DEPENDS ${QM_FILES})
- 
- set(EXTERNAL_LIBS "")
--set(PC_PKGS kysdk-waylandhelper)
-+set(PC_PKGS kysdk-waylandhelper kysdk-qtwidgets)
- foreach(external_lib IN ITEMS ${PC_PKGS})
-     pkg_check_modules(${external_lib} REQUIRED IMPORTED_TARGET ${external_lib})
-     if(${${external_lib}_FOUND})
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 22866b2..2b01d47 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -22,11 +22,19 @@
- ClipboardBackend::ClipboardBackend(QObject *parent)
-     : QObject{parent}
-     , m_imageProvider(new InMemoryImageProvider())
-+    , m_isWayland(QGuiApplication::platformName().startsWith(QStringLiteral("wayland")))
- {
-     monitorShortCut();
-     // 加0.1s的延时保证快捷键生效
-     m_timer.setInterval(100);
-     m_timer.setSingleShot(true);
-+    if (m_isWayland) {
-+        m_pNormalTip = new kdk::KBallonTip();
-+        m_pNormalTip->setWindowFlag(Qt::FramelessWindowHint);
-+        m_pNormalTip->setAttribute(Qt::WA_TranslucentBackground);
-+        m_pNormalTip->setTipType(kdk::TipType::Normal);
-+        m_pNormalTip->setText(tr("Successfully copied, please paste at the corresponding location"));
-+    }
-     connect(&m_timer, &QTimer::timeout, this, &ClipboardBackend::pasteClicked);
- }
- 
-@@ -239,6 +247,11 @@ void ClipboardBackend::pasteClicked() const
-     XTestGrabControl (disp, False);
- 
-     XCloseDisplay(disp);
-+
-+    if (m_isWayland) {
-+        m_pNormalTip->setTipTime(4000);  //设置显示时间
-+        m_pNormalTip->showInfo();
-+    }
- }
- 
- int ClipboardBackend::imageNumber() const
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index 84215a1..e2e2660 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -6,6 +6,8 @@
- #include <QVariant>
- #include <QIcon>
- #include <QTimer>
-+#include <kwidget.h>
-+#include <kballontip.h>
- #include "data.h"
- 
- class ClipboardBackend : public QObject
-@@ -76,6 +78,7 @@ signals:
- 
- private:
-     QList<QObject*> m_contentMenus;
-+    kdk::KBallonTip* m_pNormalTip;
-     int m_displayingType;
-     int m_originalType;
-     QSize m_imageSize;
-@@ -85,6 +88,7 @@ private:
-     QTimer m_timer;
-     // 不需要自己释放,engine 会管理释放
-     InMemoryImageProvider *m_imageProvider = nullptr;
-+    bool m_isWayland = false;
- };
- 
- #endif // CLIPBOARDBACKEND_H
-diff --git a/ukui-clipboard_bo_CN.ts b/ukui-clipboard_bo_CN.ts
-index 4a01c24..caf1df3 100644
---- a/ukui-clipboard_bo_CN.ts
-+++ b/ukui-clipboard_bo_CN.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_de.ts b/ukui-clipboard_de.ts
-index bf21ca8..373ab3d 100644
---- a/ukui-clipboard_de.ts
-+++ b/ukui-clipboard_de.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_es.ts b/ukui-clipboard_es.ts
-index 42c3519..d1b6760 100644
---- a/ukui-clipboard_es.ts
-+++ b/ukui-clipboard_es.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_fr.ts b/ukui-clipboard_fr.ts
-index f083d05..8d5c6d2 100644
---- a/ukui-clipboard_fr.ts
-+++ b/ukui-clipboard_fr.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_kk.ts b/ukui-clipboard_kk.ts
-index 7e8c6b5..805241d 100644
---- a/ukui-clipboard_kk.ts
-+++ b/ukui-clipboard_kk.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_ky.ts b/ukui-clipboard_ky.ts
-index fe67dd2..c6e915f 100644
---- a/ukui-clipboard_ky.ts
-+++ b/ukui-clipboard_ky.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_mn.ts b/ukui-clipboard_mn.ts
-index d56c282..35434da 100644
---- a/ukui-clipboard_mn.ts
-+++ b/ukui-clipboard_mn.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_ug.ts b/ukui-clipboard_ug.ts
-index 37da404..9042547 100644
---- a/ukui-clipboard_ug.ts
-+++ b/ukui-clipboard_ug.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
-diff --git a/ukui-clipboard_zh_CN.ts b/ukui-clipboard_zh_CN.ts
-index c3411d5..6f7726f 100644
---- a/ukui-clipboard_zh_CN.ts
-+++ b/ukui-clipboard_zh_CN.ts
-@@ -4,43 +4,48 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation>已成功复制,请到对应处粘贴</translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation>识别为文本</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation>转为截图</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation>转为纯文本</translation>
-     </message>
-     <message>
-         <source>pasted</source>
--        <translation>原始粘贴</translation>
-+        <translation type="vanished">原始粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation>原始粘贴</translation>
-     </message>
-     <message>
-         <source>convert picture</source>
--        <translation>转为截图</translation>
-+        <translation type="vanished">转为截图</translation>
-     </message>
-     <message>
-         <source>convert plaintext</source>
-         <oldsource>convert richtext</oldsource>
--        <translation>转为纯文本</translation>
-+        <translation type="vanished">转为纯文本</translation>
-     </message>
- </context>
- <context>
-diff --git a/ukui-clipboard_zh_Hant.ts b/ukui-clipboard_zh_Hant.ts
-index 0d1e5ab..4af1a3c 100644
---- a/ukui-clipboard_zh_Hant.ts
-+++ b/ukui-clipboard_zh_Hant.ts
-@@ -4,44 +4,36 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="146"/>
--        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="36"/>
-+        <source>Successfully copied, please paste at the corresponding location</source>
-+        <translation type="unfinished"></translation>
-+    </message>
-+    <message>
-+        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="153"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="161"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <source>pasted</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <location filename="clipboardbackend.cpp" line="147"/>
-         <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="162"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-+        <location filename="clipboardbackend.cpp" line="176"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
--    <message>
--        <source>convert picture</source>
--        <translation type="unfinished"></translation>
--    </message>
--    <message>
--        <source>convert plaintext</source>
--        <oldsource>convert richtext</oldsource>
--        <translation type="unfinished"></translation>
--    </message>
- </context>
- <context>
-     <name>ClipboardWindow</name>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0023-wayland-menu.patch ukui-clipboard-2.0.0.0/debian/patches/0023-wayland-menu.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0023-wayland-menu.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0023-wayland-menu.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,543 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Wed, 12 Jun 2024 10:39:25 +0800
-Subject: =?utf-8?b?5aKe5Yqgd2F5bGFuZOeOr+Wig21lbnXmmL7npLrlnKjpvKDmoIflpIQ=?=
- =?utf-8?b?55qE5Yqf6IO9?=
-
----
- clipboardbackend.cpp      | 11 +++++++++++
- ukui-clipboard_bo_CN.ts   | 20 ++++++++++----------
- ukui-clipboard_de.ts      | 20 ++++++++++----------
- ukui-clipboard_es.ts      | 20 ++++++++++----------
- ukui-clipboard_fr.ts      | 20 ++++++++++----------
- ukui-clipboard_kk.ts      | 20 ++++++++++----------
- ukui-clipboard_ky.ts      | 20 ++++++++++----------
- ukui-clipboard_mn.ts      | 20 ++++++++++----------
- ukui-clipboard_ug.ts      | 20 ++++++++++----------
- ukui-clipboard_zh_CN.ts   | 20 ++++++++++----------
- ukui-clipboard_zh_Hant.ts | 20 ++++++++++----------
- 11 files changed, 111 insertions(+), 100 deletions(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 2b01d47..0897ea8 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -10,6 +10,7 @@
- #include <QGuiApplication>
- #include <QQmlApplicationEngine>
- #include <QQmlContext>
-+#include <QWindow>
- 
- // kf5
- #include <KF5/KGlobalAccel/KGlobalAccel>
-@@ -19,6 +20,9 @@
- #include <X11/keysymdef.h>
- #include <X11/keysym.h>
- 
-+// kysdk
-+#include <kysdk/applications/windowmanager/windowmanager.h>
-+
- ClipboardBackend::ClipboardBackend(QObject *parent)
-     : QObject{parent}
-     , m_imageProvider(new InMemoryImageProvider())
-@@ -205,11 +209,18 @@ void ClipboardBackend::monitorShortCut()
- void ClipboardBackend::showContentMenu()
- {
-     emit contentMenuVisibleChanged(true);
-+    QWindowList m_windowList = qGuiApp->allWindows();
-+    foreach (QWindow *window, m_windowList) {
-+        if (window->title() == "Function Menu Window"){
-+            kdk::WindowManager::self()->setOpenUnderCursor(window);
-+        }
-+    }
- }
- 
- void ClipboardBackend::showClipboardWindow()
- {
-     emit clipboardWindowVisibleChanged(true);
-+
- }
- 
- void ClipboardBackend::pasteClicked() const
-diff --git a/ukui-clipboard_bo_CN.ts b/ukui-clipboard_bo_CN.ts
-index caf1df3..92c80d2 100644
---- a/ukui-clipboard_bo_CN.ts
-+++ b/ukui-clipboard_bo_CN.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_de.ts b/ukui-clipboard_de.ts
-index 373ab3d..95153ba 100644
---- a/ukui-clipboard_de.ts
-+++ b/ukui-clipboard_de.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_es.ts b/ukui-clipboard_es.ts
-index d1b6760..cbebf48 100644
---- a/ukui-clipboard_es.ts
-+++ b/ukui-clipboard_es.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_fr.ts b/ukui-clipboard_fr.ts
-index 8d5c6d2..5f0e41d 100644
---- a/ukui-clipboard_fr.ts
-+++ b/ukui-clipboard_fr.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_kk.ts b/ukui-clipboard_kk.ts
-index 805241d..4b9eec2 100644
---- a/ukui-clipboard_kk.ts
-+++ b/ukui-clipboard_kk.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ky.ts b/ukui-clipboard_ky.ts
-index c6e915f..22ced3d 100644
---- a/ukui-clipboard_ky.ts
-+++ b/ukui-clipboard_ky.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_mn.ts b/ukui-clipboard_mn.ts
-index 35434da..1d6f6ab 100644
---- a/ukui-clipboard_mn.ts
-+++ b/ukui-clipboard_mn.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ug.ts b/ukui-clipboard_ug.ts
-index 9042547..f50e434 100644
---- a/ukui-clipboard_ug.ts
-+++ b/ukui-clipboard_ug.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_zh_CN.ts b/ukui-clipboard_zh_CN.ts
-index 6f7726f..14f87d3 100644
---- a/ukui-clipboard_zh_CN.ts
-+++ b/ukui-clipboard_zh_CN.ts
-@@ -4,25 +4,25 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation>已成功复制,请到对应处粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation>识别为文本</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation>转为截图</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation>转为纯文本</translation>
-     </message>
-@@ -31,10 +31,10 @@
-         <translation type="vanished">原始粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation>原始粘贴</translation>
-     </message>
-diff --git a/ukui-clipboard_zh_Hant.ts b/ukui-clipboard_zh_Hant.ts
-index 4af1a3c..b6f0ae7 100644
---- a/ukui-clipboard_zh_Hant.ts
-+++ b/ukui-clipboard_zh_Hant.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="36"/>
-+        <location filename="clipboardbackend.cpp" line="40"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="154"/>
--        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="158"/>
-+        <location filename="clipboardbackend.cpp" line="173"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="161"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="165"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="155"/>
--        <location filename="clipboardbackend.cpp" line="163"/>
--        <location filename="clipboardbackend.cpp" line="170"/>
--        <location filename="clipboardbackend.cpp" line="176"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0024-wayland.patch ukui-clipboard-2.0.0.0/debian/patches/0024-wayland.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0024-wayland.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0024-wayland.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,564 +0,0 @@
-From: akajd <jiaodian@kylinos.cn>
-Date: Fri, 14 Jun 2024 15:38:45 +0800
-Subject: =?utf-8?b?6YCC6YWNd2F5bGFuZOeOr+Wig+S4i+eql+WPo+aXoOagh+mimOaOpQ==?=
- =?utf-8?b?5Y+j?=
-
----
- clipboardbackend.cpp      | 21 ++++++++++++++++-----
- ukui-clipboard_bo_CN.ts   | 20 ++++++++++----------
- ukui-clipboard_de.ts      | 20 ++++++++++----------
- ukui-clipboard_es.ts      | 20 ++++++++++----------
- ukui-clipboard_fr.ts      | 20 ++++++++++----------
- ukui-clipboard_kk.ts      | 20 ++++++++++----------
- ukui-clipboard_ky.ts      | 20 ++++++++++----------
- ukui-clipboard_mn.ts      | 20 ++++++++++----------
- ukui-clipboard_ug.ts      | 20 ++++++++++----------
- ukui-clipboard_zh_CN.ts   | 20 ++++++++++----------
- ukui-clipboard_zh_Hant.ts | 20 ++++++++++----------
- windowsettings.cpp        |  4 +---
- 12 files changed, 117 insertions(+), 108 deletions(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 0897ea8..2bed83f 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -22,6 +22,7 @@
- 
- // kysdk
- #include <kysdk/applications/windowmanager/windowmanager.h>
-+#include <ukuistylehelper/ukui-shell-manager.h>
- 
- ClipboardBackend::ClipboardBackend(QObject *parent)
-     : QObject{parent}
-@@ -209,10 +210,13 @@ void ClipboardBackend::monitorShortCut()
- void ClipboardBackend::showContentMenu()
- {
-     emit contentMenuVisibleChanged(true);
--    QWindowList m_windowList = qGuiApp->allWindows();
--    foreach (QWindow *window, m_windowList) {
--        if (window->title() == "Function Menu Window"){
--            kdk::WindowManager::self()->setOpenUnderCursor(window);
-+    if (m_isWayland){
-+        QWindowList m_windowList = qGuiApp->allWindows();
-+        foreach (QWindow *window, m_windowList) {
-+            if (window->title() == "Function Menu Window"){
-+                kdk::WindowManager::self()->setOpenUnderCursor(window);
-+                UkuiShellManager::getInstance()->removeHeaderBar(window);
-+            }
-         }
-     }
- }
-@@ -220,7 +224,14 @@ void ClipboardBackend::showContentMenu()
- void ClipboardBackend::showClipboardWindow()
- {
-     emit clipboardWindowVisibleChanged(true);
--
-+    if (m_isWayland){
-+        QWindowList m_windowList = qGuiApp->allWindows();
-+        foreach (QWindow *window, m_windowList) {
-+            if (window->title() == "Preview Window"){
-+                UkuiShellManager::getInstance()->removeHeaderBar(window);
-+            }
-+        }
-+    }
- }
- 
- void ClipboardBackend::pasteClicked() const
-diff --git a/ukui-clipboard_bo_CN.ts b/ukui-clipboard_bo_CN.ts
-index 92c80d2..78452a2 100644
---- a/ukui-clipboard_bo_CN.ts
-+++ b/ukui-clipboard_bo_CN.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_de.ts b/ukui-clipboard_de.ts
-index 95153ba..ff8a7c2 100644
---- a/ukui-clipboard_de.ts
-+++ b/ukui-clipboard_de.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_es.ts b/ukui-clipboard_es.ts
-index cbebf48..a630a25 100644
---- a/ukui-clipboard_es.ts
-+++ b/ukui-clipboard_es.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_fr.ts b/ukui-clipboard_fr.ts
-index 5f0e41d..321db3d 100644
---- a/ukui-clipboard_fr.ts
-+++ b/ukui-clipboard_fr.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_kk.ts b/ukui-clipboard_kk.ts
-index 4b9eec2..73a39eb 100644
---- a/ukui-clipboard_kk.ts
-+++ b/ukui-clipboard_kk.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ky.ts b/ukui-clipboard_ky.ts
-index 22ced3d..d0ee63f 100644
---- a/ukui-clipboard_ky.ts
-+++ b/ukui-clipboard_ky.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_mn.ts b/ukui-clipboard_mn.ts
-index 1d6f6ab..7444e8f 100644
---- a/ukui-clipboard_mn.ts
-+++ b/ukui-clipboard_mn.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ug.ts b/ukui-clipboard_ug.ts
-index f50e434..adf41ee 100644
---- a/ukui-clipboard_ug.ts
-+++ b/ukui-clipboard_ug.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_zh_CN.ts b/ukui-clipboard_zh_CN.ts
-index 14f87d3..4c1fc72 100644
---- a/ukui-clipboard_zh_CN.ts
-+++ b/ukui-clipboard_zh_CN.ts
-@@ -4,25 +4,25 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation>已成功复制,请到对应处粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation>识别为文本</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation>转为截图</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation>转为纯文本</translation>
-     </message>
-@@ -31,10 +31,10 @@
-         <translation type="vanished">原始粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation>原始粘贴</translation>
-     </message>
-diff --git a/ukui-clipboard_zh_Hant.ts b/ukui-clipboard_zh_Hant.ts
-index b6f0ae7..1dd4bb3 100644
---- a/ukui-clipboard_zh_Hant.ts
-+++ b/ukui-clipboard_zh_Hant.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="40"/>
-+        <location filename="clipboardbackend.cpp" line="41"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="158"/>
--        <location filename="clipboardbackend.cpp" line="173"/>
-+        <location filename="clipboardbackend.cpp" line="159"/>
-+        <location filename="clipboardbackend.cpp" line="174"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="165"/>
--        <location filename="clipboardbackend.cpp" line="179"/>
-+        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
-+        <location filename="clipboardbackend.cpp" line="167"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="167"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="160"/>
-+        <location filename="clipboardbackend.cpp" line="168"/>
-+        <location filename="clipboardbackend.cpp" line="175"/>
-+        <location filename="clipboardbackend.cpp" line="181"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/windowsettings.cpp b/windowsettings.cpp
-index e338a8a..3917139 100644
---- a/windowsettings.cpp
-+++ b/windowsettings.cpp
-@@ -58,9 +58,7 @@ void WindowSettings::removeTitleBar()
-             return;
-         }
- 
--        if (m_isWayland) {
--            UKUIDecorationManager::getInstance()->removeHeaderBar(window);
--        } else {
-+        if (!m_isWayland) {
-             MotifWmHints hints;
-             hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
-             hints.functions = MWM_FUNC_ALL;
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0025-ukui-clipboard-1.0.0.0-ok1.5.patch ukui-clipboard-2.0.0.0/debian/patches/0025-ukui-clipboard-1.0.0.0-ok1.5.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0025-ukui-clipboard-1.0.0.0-ok1.5.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0025-ukui-clipboard-1.0.0.0-ok1.5.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,30 +0,0 @@
-From: zouxiaoyi <zouxiaoyi@kylinos.cn>
-Date: Fri, 19 Jul 2024 16:13:58 +0800
-Subject: ukui-clipboard: 1.0.0.0-ok1.5
-
----
- clipboardbackend.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 2bed83f..7d001c3 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -158,7 +158,7 @@ bool ClipboardBackend::processClipboardData()
-         setOriginalType(ContentMenu::Image);
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
--    } else if (mimeData->hasHtml()) {
-+    } else if (mimeData->hasHtml() && (mimeData->hasFormat("Rich Text Format") || mimeData->hasFormat("text/richtext"))) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
-@@ -166,7 +166,7 @@ bool ClipboardBackend::processClipboardData()
-         this->addContentMenu(new ContentMenu(ContentMenu::Image, tr("convert to picture")));
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("convert to plaintext")));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
--    } else if (mimeData->hasImage()) {
-+    } else if (mimeData->hasImage() && !mimeData->hasText()) {
-         QImage image = qvariant_cast<QImage>(mimeData->imageData());
-         this->addImage(image);
-         this->m_plainText = convertImageToPlainText(image);
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0026-Fix-bug-IA7J2Q-200-shift.patch ukui-clipboard-2.0.0.0/debian/patches/0026-Fix-bug-IA7J2Q-200-shift.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0026-Fix-bug-IA7J2Q-200-shift.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0026-Fix-bug-IA7J2Q-200-shift.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,136 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Tue, 23 Jul 2024 16:43:02 +0800
-Subject: =?utf-8?b?Rml4IGJ1ZyBJQTdKMlE6IBtbMjAwfuOAkOasoeimgeOAkeOAkOaZug==?=
- =?utf-8?b?6IO95Ymq5YiH5p2/44CR6aKE6KeI5qGG5Litc2hpZnQr6byg5qCH5rua6L2u5peg?=
- =?utf-8?b?5rOV5qiq5ZCR5ruR5Yqo?=
-
----
- ImagePreviewArea.qml | 71 +++++++++++++++++++++++++---------------------------
- TextEditArea.qml     | 15 ++++++++++-
- 2 files changed, 48 insertions(+), 38 deletions(-)
-
-diff --git a/ImagePreviewArea.qml b/ImagePreviewArea.qml
-index 658ca00..7a14026 100644
---- a/ImagePreviewArea.qml
-+++ b/ImagePreviewArea.qml
-@@ -7,51 +7,48 @@ Item {
-     id: root
-     property int visibleWidth: 0
-     property int visibleHeight: 0
--    ScrollView {
--        id: scrollView
-+    Rectangle {
-         width: parent.visibleWidth
-         height: parent.visibleHeight
-         anchors.horizontalCenter: parent.horizontalCenter
--        clip: true
--        ScrollBar.horizontal.policy: scrollView.width < scrollView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
--        ScrollBar.vertical.policy: scrollView.height < scrollView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
--        property int columns: backend.imageNumber() > 3 ? 4 : backend.imageNumber()
-+        color: "transparent"
- 
--        GridLayout {
--            columns: scrollView.columns
--            rowSpacing: 10
--            columnSpacing: 10
--
--            Repeater {
--                id: imageRepeater
--                model: backend.imageNumber()
--
--                delegate: Rectangle {
--                    width: scrollView.width
--                    height: scrollView.height
--                    color: "transparent"
--
--                    ScrollView {
--                        id: imageView
--                        width: parent.width
--                        height: parent.height
--                        contentWidth: screenshot.paintedWidth
--                        contentHeight: screenshot.paintedHeight
--                        clip: true
--                        ScrollBar.horizontal.policy: imageView.width < imageView.contentWidth ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
--                        ScrollBar.vertical.policy: imageView.height < imageView.contentHeight ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
-+        Flickable {
-+            id: flick
-+            anchors.fill: parent
-+            contentWidth: screenshot.paintedWidth
-+            contentHeight: screenshot.paintedHeight
-+            boundsMovement: Flickable.StopAtBounds
-+            clip: true
-+            ScrollBar.vertical: ScrollBar {
-+                active: true
-+                visible: flick.contentHeight > flick.height
-+            }
-+            ScrollBar.horizontal: ScrollBar {
-+                active: true
-+                visible: flick.contentWidth > flick.width
-+            }
- 
--                        Image {
--                            id: screenshot
--                            x: root.width > paintedWidth ? Math.round((root.width - paintedWidth) / 2) : 0
--                            y: root.height > paintedHeight ? Math.round((root.height - paintedHeight) / 2) : 0
--                            cache: false
--                            fillMode: Image.PreserveAspectFit
--                            source: "image://inMemoryImages/Image" + index
--                        }
-+            // 鼠标事件处理区域
-+            MouseArea {
-+                anchors.fill: parent
-+                onWheel: {
-+                    if (wheel.modifiers & Qt.ShiftModifier) {
-+                        flick.contentX -= wheel.angleDelta.y
-+                    } else {
-+                        flick.contentY -= wheel.angleDelta.y
-                     }
-                 }
-             }
-+
-+            Image {
-+                id: screenshot
-+                x: root.width > paintedWidth ? Math.round((root.width - paintedWidth) / 2) : 0
-+                y: root.height > paintedHeight ? Math.round((root.height - paintedHeight) / 2) : 0
-+                cache: false
-+                fillMode: Image.PreserveAspectFit
-+                source: "image://inMemoryImages/Image0"
-+            }
-         }
-     }
- }
-diff --git a/TextEditArea.qml b/TextEditArea.qml
-index 98c69d8..de7d702 100644
---- a/TextEditArea.qml
-+++ b/TextEditArea.qml
-@@ -18,16 +18,29 @@ Item {
-             anchors.fill: parent
-             contentWidth: textEdit.paintedWidth
-             contentHeight: textEdit.paintedHeight
-+            boundsMovement: Flickable.StopAtBounds
-             clip: true
-             ScrollBar.vertical: ScrollBar {
-                 active: true
-                 visible: flick.contentHeight > flick.height
-             }
--            ScrollBar.horizontal: ScrollBar{
-+            ScrollBar.horizontal: ScrollBar {
-                 active: true
-                 visible: flick.contentWidth > flick.width
-             }
- 
-+            // 鼠标事件处理区域
-+            MouseArea {
-+                anchors.fill: parent
-+                onWheel: {
-+                    if (wheel.modifiers & Qt.ShiftModifier) {
-+                        flick.contentX -= wheel.angleDelta.y
-+                    } else {
-+                        flick.contentY -= wheel.angleDelta.y
-+                    }
-+                }
-+            }
-+
-             TextEdit {
-                 id: textEdit
-                 focus: true
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0027-ukui-clipboard-1.0.0.0-ok1.6.patch ukui-clipboard-2.0.0.0/debian/patches/0027-ukui-clipboard-1.0.0.0-ok1.6.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0027-ukui-clipboard-1.0.0.0-ok1.6.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0027-ukui-clipboard-1.0.0.0-ok1.6.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,133 +0,0 @@
-From: zouxiaoyi <zouxiaoyi@kylinos.cn>
-Date: Tue, 23 Jul 2024 17:37:42 +0800
-Subject: ukui-clipboard: 1.0.0.0-ok1.6
-
----
- CMakeLists.txt       |  3 ++-
- TextEditArea.qml     |  6 ++++++
- clipboardbackend.cpp | 37 ++++++++++++++++++++++++-------------
- 3 files changed, 32 insertions(+), 14 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c512635..abdd3f0 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -32,7 +32,7 @@ find_package(KF5GlobalAccel REQUIRED)
- find_package(KF5I18n REQUIRED)
- find_package(KF5WindowSystem REQUIRED)
- find_package(KF5CoreAddons REQUIRED)
--find_package(Qt5 COMPONENTS Core Quick X11Extras REQUIRED)
-+find_package(Qt5 COMPONENTS Core Quick X11Extras Concurrent REQUIRED)
- find_package(X11 REQUIRED)
- find_package(PkgConfig REQUIRED)
- find_package(ukui-quick COMPONENTS platform REQUIRED)
-@@ -106,6 +106,7 @@ target_link_libraries(ukui-clipboard PRIVATE
-     Qt5::Quick
-     Qt5::X11Extras
-     Qt5::QuickWidgets
-+    Qt5::Concurrent
-     KF5::ConfigCore
-     KF5::WindowSystem
-     KF5::CoreAddons
-diff --git a/TextEditArea.qml b/TextEditArea.qml
-index de7d702..b04839a 100644
---- a/TextEditArea.qml
-+++ b/TextEditArea.qml
-@@ -51,6 +51,12 @@ Item {
-                 onCursorRectangleChanged: {
-                     flick.ensureVisible(cursorRectangle)
-                 }
-+                Connections {
-+                    target: backend
-+                    function onPlainTextChanged() {
-+                        textEdit.text = backend.plainText
-+                    }
-+                }
-                 Component.onCompleted: {
-                     // OCR识别的文本不会特别长,所以直接调用后台接口获取文本内容即可
-                     if (backend.originalType === ContentType.Image && backend.displayingType === ContentType.PlainText) {
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index 7d001c3..ca71913 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -11,6 +11,7 @@
- #include <QQmlApplicationEngine>
- #include <QQmlContext>
- #include <QWindow>
-+#include <QtConcurrent>
- 
- // kf5
- #include <KF5/KGlobalAccel/KGlobalAccel>
-@@ -154,11 +155,13 @@ bool ClipboardBackend::processClipboardData()
-             return false;
-         }
-         this->addImage(image);
--        this->m_plainText = convertImageToPlainText(image);
-+        QtConcurrent::run([this, &image]() {
-+            setPlainText(convertImageToPlainText(image));
-+        });
-         setOriginalType(ContentMenu::Image);
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
--    } else if (mimeData->hasHtml() && (mimeData->hasFormat("Rich Text Format") || mimeData->hasFormat("text/richtext"))) {
-+    } else if (mimeData->hasHtml() && !mimeData->hasFormat("Art::Table ClipFormat")) {
-         this->m_richText = mimeData->html();
-         this->m_plainText = clipboard->text();
-         setOriginalType(ContentMenu::RichText);
-@@ -169,7 +172,9 @@ bool ClipboardBackend::processClipboardData()
-     } else if (mimeData->hasImage() && !mimeData->hasText()) {
-         QImage image = qvariant_cast<QImage>(mimeData->imageData());
-         this->addImage(image);
--        this->m_plainText = convertImageToPlainText(image);
-+        QtConcurrent::run([this, &image]() {
-+            setPlainText(convertImageToPlainText(image));
-+        });
-         setOriginalType(ContentMenu::Image);
-         this->addContentMenu(new ContentMenu(ContentMenu::PlainText, tr("text recognition")));
-         this->addContentMenu(new ContentMenu(ContentMenu::Original, tr("original paste")));
-@@ -209,29 +214,35 @@ void ClipboardBackend::monitorShortCut()
- 
- void ClipboardBackend::showContentMenu()
- {
--    emit contentMenuVisibleChanged(true);
--    if (m_isWayland){
--        QWindowList m_windowList = qGuiApp->allWindows();
--        foreach (QWindow *window, m_windowList) {
--            if (window->title() == "Function Menu Window"){
-+    QWindowList m_windowList = qGuiApp->allWindows();
-+    foreach (QWindow *window, m_windowList) {
-+        if (window->title() == "Function Menu Window") {
-+            // 这些属性需要在窗口创建前设置,否则可能不生效
-+            kdk::WindowManager::self()->setSkipTaskBar(window, true);
-+            kdk::WindowManager::self()->setSkipSwitcher(window, true);
-+            if (m_isWayland) {
-                 kdk::WindowManager::self()->setOpenUnderCursor(window);
-                 UkuiShellManager::getInstance()->removeHeaderBar(window);
-             }
-         }
-     }
-+    emit contentMenuVisibleChanged(true);
- }
- 
- void ClipboardBackend::showClipboardWindow()
- {
--    emit clipboardWindowVisibleChanged(true);
--    if (m_isWayland){
--        QWindowList m_windowList = qGuiApp->allWindows();
--        foreach (QWindow *window, m_windowList) {
--            if (window->title() == "Preview Window"){
-+    QWindowList m_windowList = qGuiApp->allWindows();
-+    foreach (QWindow *window, m_windowList) {
-+        if (window->title() == "Preview Window") {
-+            // 这些属性需要在窗口创建前设置,否则可能不生效
-+            kdk::WindowManager::self()->setSkipTaskBar(window, true);
-+            kdk::WindowManager::self()->setSkipSwitcher(window, true);
-+            if (m_isWayland) {
-                 UkuiShellManager::getInstance()->removeHeaderBar(window);
-             }
-         }
-     }
-+    emit clipboardWindowVisibleChanged(true);
- }
- 
- void ClipboardBackend::pasteClicked() const
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0028-wayland-X11.patch ukui-clipboard-2.0.0.0/debian/patches/0028-wayland-X11.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0028-wayland-X11.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0028-wayland-X11.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,905 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Wed, 24 Jul 2024 10:24:39 +0800
-Subject: =?utf-8?b?6Kej5Yazd2F5bGFuZOS4i+WcqFgxMeeymOi0tOaXtuaXouS8muebtA==?=
- =?utf-8?b?5o6l57KY6LS05Y+I5Lya5by55Ye65o+Q56S656qX5Y+j55qE6Zeu6aKY?=
-
----
- CMakeLists.txt.user       | 322 ++++++++++++++++++++++++++++++++++++++++++++++
- clipboardbackend.cpp      |  54 ++++----
- ukui-clipboard_bo_CN.ts   |  20 +--
- ukui-clipboard_de.ts      |  20 +--
- ukui-clipboard_es.ts      |  20 +--
- ukui-clipboard_fr.ts      |  20 +--
- ukui-clipboard_kk.ts      |  20 +--
- ukui-clipboard_ky.ts      |  20 +--
- ukui-clipboard_mn.ts      |  20 +--
- ukui-clipboard_ug.ts      |  20 +--
- ukui-clipboard_zh_CN.ts   |  20 +--
- ukui-clipboard_zh_Hant.ts |  20 +--
- 12 files changed, 446 insertions(+), 130 deletions(-)
- create mode 100644 CMakeLists.txt.user
-
-diff --git a/CMakeLists.txt.user b/CMakeLists.txt.user
-new file mode 100644
-index 0000000..cb2dbc6
---- /dev/null
-+++ b/CMakeLists.txt.user
-@@ -0,0 +1,322 @@
-+<?xml version="1.0" encoding="UTF-8"?>
-+<!DOCTYPE QtCreatorProject>
-+<!-- Written by QtCreator 6.0.2, 2024-07-22T18:07:36. -->
-+<qtcreator>
-+ <data>
-+  <variable>EnvironmentId</variable>
-+  <value type="QByteArray">{d397a54a-ddf7-4034-a190-47597eedd40c}</value>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.ActiveTarget</variable>
-+  <value type="int">0</value>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.EditorSettings</variable>
-+  <valuemap type="QVariantMap">
-+   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
-+   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
-+   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
-+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
-+    <value type="QString" key="language">Cpp</value>
-+    <valuemap type="QVariantMap" key="value">
-+     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
-+    </valuemap>
-+   </valuemap>
-+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
-+    <value type="QString" key="language">QmlJS</value>
-+    <valuemap type="QVariantMap" key="value">
-+     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
-+    </valuemap>
-+   </valuemap>
-+   <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
-+   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
-+   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
-+   <value type="int" key="EditorConfiguration.IndentSize">4</value>
-+   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
-+   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
-+   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
-+   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
-+   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
-+   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
-+   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
-+   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
-+   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
-+   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
-+   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
-+   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
-+   <value type="int" key="EditorConfiguration.TabSize">8</value>
-+   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
-+   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
-+   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
-+   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
-+   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
-+   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
-+   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
-+   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
-+   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
-+  </valuemap>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.PluginSettings</variable>
-+  <valuemap type="QVariantMap">
-+   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
-+    <value type="bool" key="AutoTest.Framework.Boost">true</value>
-+    <value type="bool" key="AutoTest.Framework.CTest">false</value>
-+    <value type="bool" key="AutoTest.Framework.Catch">true</value>
-+    <value type="bool" key="AutoTest.Framework.GTest">true</value>
-+    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
-+    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
-+   </valuemap>
-+   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
-+   <value type="int" key="AutoTest.RunAfterBuild">0</value>
-+   <value type="bool" key="AutoTest.UseGlobal">true</value>
-+   <valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
-+   <value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
-+   <value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.BuildSystem</value>
-+   <valuemap type="QVariantMap" key="ClangTools">
-+    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
-+    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
-+    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
-+    <value type="int" key="ClangTools.ParallelJobs">16</value>
-+    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
-+    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
-+    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
-+    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
-+   </valuemap>
-+  </valuemap>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.Target.0</variable>
-+  <valuemap type="QVariantMap">
-+   <value type="QString" key="DeviceType">Desktop</value>
-+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">桌面</value>
-+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">桌面</value>
-+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{7170c5d1-f8b8-4eb4-94e9-72842deb8cd6}</value>
-+   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
-+   <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
-+   <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
-+    <value type="QString" key="CMake.Build.Type">Debug</value>
-+    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
-+-DCMAKE_BUILD_TYPE:STRING=Debug
-+-DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
-+-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
-+-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-+-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-+-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-Debug</value>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">all</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-+    </valuemap>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">clean</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-+    </valuemap>
-+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-+   </valuemap>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
-+    <value type="QString" key="CMake.Build.Type">Release</value>
-+    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
-+-DCMAKE_BUILD_TYPE:STRING=Release
-+-DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
-+-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
-+-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-+-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-+-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-Release</value>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">all</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-+    </valuemap>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">clean</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-+    </valuemap>
-+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-+   </valuemap>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
-+    <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value>
-+    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
-+-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo
-+-DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
-+-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
-+-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-+-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-+-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-RelWithDebInfo</value>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">all</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-+    </valuemap>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">clean</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-+    </valuemap>
-+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-+   </valuemap>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3">
-+    <value type="QString" key="CMake.Build.Type">MinSizeRel</value>
-+    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
-+-DCMAKE_BUILD_TYPE:STRING=MinSizeRel
-+-DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
-+-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
-+-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-+-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-+-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-MinSizeRel</value>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">all</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-+    </valuemap>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-+      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-+       <value type="QString">clean</value>
-+      </valuelist>
-+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-+     </valuemap>
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-+    </valuemap>
-+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-+   </valuemap>
-+   <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">4</value>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
-+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Deploy</value>
-+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
-+    </valuemap>
-+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
-+    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
-+    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
-+   </valuemap>
-+   <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
-+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
-+    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
-+    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
-+    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
-+    <valuelist type="QVariantList" key="CustomOutputParsers"/>
-+    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
-+    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">ukui-clipboard</value>
-+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.ukui-clipboard</value>
-+    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">ukui-clipboard</value>
-+    <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
-+    <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
-+    <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
-+    <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
-+    <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
-+    <value type="QString" key="RunConfiguration.WorkingDirectory.default">/home/kylin/ai/build-ukui-clipboard-unknown-Debug</value>
-+   </valuemap>
-+   <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
-+  </valuemap>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.TargetCount</variable>
-+  <value type="int">1</value>
-+ </data>
-+ <data>
-+  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
-+  <value type="int">22</value>
-+ </data>
-+ <data>
-+  <variable>Version</variable>
-+  <value type="int">22</value>
-+ </data>
-+</qtcreator>
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index ca71913..acb1d91 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -247,44 +247,38 @@ void ClipboardBackend::showClipboardWindow()
- 
- void ClipboardBackend::pasteClicked() const
- {
--    Display* disp = XOpenDisplay(NULL);
--    if(disp == NULL)
--    {
-+    if (m_isWayland) {
-+        m_pNormalTip->setTipTime(4000); // 设置显示时间
-+        m_pNormalTip->showInfo();
-         return;
-     }
--    //模拟Ctrl+C的组合键操作
--    int ctrl_value = XK_Control_L;
--    int key_value = XK_V;
--    KeyCode keycode = 0, modcode = 0;
--
--    keycode = XKeysymToKeycode (disp, key_value);
--    if (keycode == 0) return;
--    XTestGrabControl (disp, True);
--
--     //保持Ctrl键
--    if (ctrl_value != 0)
--    {
--        modcode = XKeysymToKeycode(disp, ctrl_value);
--        XTestFakeKeyEvent (disp, modcode, True, 0);
-+
-+    Display *disp = XOpenDisplay(NULL);
-+    if (disp == NULL) {
-+        return;
-     }
- 
--    //模拟C键按下
--    XTestFakeKeyEvent (disp, keycode, True, 0);
--    XTestFakeKeyEvent (disp, keycode, False, 0);
-+    const KeySym ctrlKeySym = XK_Control_L;
-+    const KeySym vKeySym = XK_V;
-+    KeyCode vCode = XKeysymToKeycode(disp, vKeySym);
-+    KeyCode ctrlCode = XKeysymToKeycode(disp, ctrlKeySym);
-+    if (vCode == 0 || ctrlCode == 0) {
-+        XCloseDisplay(disp);
-+        return;
-+    }
- 
--    //释放Ctrl键
--    if (ctrl_value != 0)
--        XTestFakeKeyEvent (disp, modcode, False, 0);
-+    XTestGrabControl(disp, True);
- 
--    XSync (disp, False);
--    XTestGrabControl (disp, False);
-+    XTestFakeKeyEvent(disp, ctrlCode, True, 0);
-+    XTestFakeKeyEvent(disp, vCode, True, 0);
-+    XTestFakeKeyEvent(disp, vCode, False, 0);
-+    XTestFakeKeyEvent(disp, ctrlCode, False, 0);
- 
--    XCloseDisplay(disp);
-+    XTestGrabControl(disp, False);
-+    // Flush the display to ensure all events are sent
-+    XFlush(disp);
- 
--    if (m_isWayland) {
--        m_pNormalTip->setTipTime(4000);  //设置显示时间
--        m_pNormalTip->showInfo();
--    }
-+    XCloseDisplay(disp);
- }
- 
- int ClipboardBackend::imageNumber() const
-diff --git a/ukui-clipboard_bo_CN.ts b/ukui-clipboard_bo_CN.ts
-index 78452a2..ced8c01 100644
---- a/ukui-clipboard_bo_CN.ts
-+++ b/ukui-clipboard_bo_CN.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_de.ts b/ukui-clipboard_de.ts
-index ff8a7c2..dda9638 100644
---- a/ukui-clipboard_de.ts
-+++ b/ukui-clipboard_de.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_es.ts b/ukui-clipboard_es.ts
-index a630a25..5c9e50f 100644
---- a/ukui-clipboard_es.ts
-+++ b/ukui-clipboard_es.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_fr.ts b/ukui-clipboard_fr.ts
-index 321db3d..bccd8cf 100644
---- a/ukui-clipboard_fr.ts
-+++ b/ukui-clipboard_fr.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_kk.ts b/ukui-clipboard_kk.ts
-index 73a39eb..0565dd3 100644
---- a/ukui-clipboard_kk.ts
-+++ b/ukui-clipboard_kk.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ky.ts b/ukui-clipboard_ky.ts
-index d0ee63f..56964e8 100644
---- a/ukui-clipboard_ky.ts
-+++ b/ukui-clipboard_ky.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_mn.ts b/ukui-clipboard_mn.ts
-index 7444e8f..0044d2b 100644
---- a/ukui-clipboard_mn.ts
-+++ b/ukui-clipboard_mn.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_ug.ts b/ukui-clipboard_ug.ts
-index adf41ee..d27f1a8 100644
---- a/ukui-clipboard_ug.ts
-+++ b/ukui-clipboard_ug.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
-diff --git a/ukui-clipboard_zh_CN.ts b/ukui-clipboard_zh_CN.ts
-index 4c1fc72..1bb47a0 100644
---- a/ukui-clipboard_zh_CN.ts
-+++ b/ukui-clipboard_zh_CN.ts
-@@ -4,25 +4,25 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation>已成功复制,请到对应处粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation>识别为文本</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation>转为截图</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation>转为纯文本</translation>
-     </message>
-@@ -31,10 +31,10 @@
-         <translation type="vanished">原始粘贴</translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation>原始粘贴</translation>
-     </message>
-diff --git a/ukui-clipboard_zh_Hant.ts b/ukui-clipboard_zh_Hant.ts
-index 1dd4bb3..cc009dd 100644
---- a/ukui-clipboard_zh_Hant.ts
-+++ b/ukui-clipboard_zh_Hant.ts
-@@ -4,33 +4,33 @@
- <context>
-     <name>ClipboardBackend</name>
-     <message>
--        <location filename="clipboardbackend.cpp" line="41"/>
-+        <location filename="clipboardbackend.cpp" line="42"/>
-         <source>Successfully copied, please paste at the corresponding location</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="159"/>
--        <location filename="clipboardbackend.cpp" line="174"/>
-+        <location filename="clipboardbackend.cpp" line="162"/>
-+        <location filename="clipboardbackend.cpp" line="179"/>
-         <source>text recognition</source>
-         <oldsource>convert text</oldsource>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="166"/>
--        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="169"/>
-+        <location filename="clipboardbackend.cpp" line="185"/>
-         <source>convert to picture</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="167"/>
-+        <location filename="clipboardbackend.cpp" line="170"/>
-         <source>convert to plaintext</source>
-         <translation type="unfinished"></translation>
-     </message>
-     <message>
--        <location filename="clipboardbackend.cpp" line="160"/>
--        <location filename="clipboardbackend.cpp" line="168"/>
--        <location filename="clipboardbackend.cpp" line="175"/>
--        <location filename="clipboardbackend.cpp" line="181"/>
-+        <location filename="clipboardbackend.cpp" line="163"/>
-+        <location filename="clipboardbackend.cpp" line="171"/>
-+        <location filename="clipboardbackend.cpp" line="180"/>
-+        <location filename="clipboardbackend.cpp" line="186"/>
-         <source>original paste</source>
-         <translation type="unfinished"></translation>
-     </message>
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0029-ukui-clipboard-1.0.0.0-ok1.7.patch ukui-clipboard-2.0.0.0/debian/patches/0029-ukui-clipboard-1.0.0.0-ok1.7.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0029-ukui-clipboard-1.0.0.0-ok1.7.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0029-ukui-clipboard-1.0.0.0-ok1.7.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,45 +0,0 @@
-From: zouxiaoyi <zouxiaoyi@kylinos.cn>
-Date: Wed, 24 Jul 2024 11:04:55 +0800
-Subject: ukui-clipboard: 1.0.0.0-ok1.7
-
----
- clipboardbackend.cpp | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index acb1d91..db829da 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -214,6 +214,9 @@ void ClipboardBackend::monitorShortCut()
- 
- void ClipboardBackend::showContentMenu()
- {
-+    // 必须写在前面,使得 qml 组件的 visible 属性为 true,wayland 下 removeHeaderBar 才能生效
-+    emit contentMenuVisibleChanged(true);
-+
-     QWindowList m_windowList = qGuiApp->allWindows();
-     foreach (QWindow *window, m_windowList) {
-         if (window->title() == "Function Menu Window") {
-@@ -226,11 +229,13 @@ void ClipboardBackend::showContentMenu()
-             }
-         }
-     }
--    emit contentMenuVisibleChanged(true);
- }
- 
- void ClipboardBackend::showClipboardWindow()
- {
-+    // 必须写在前面,使得 qml 组件的 visible 属性为 true,wayland 下 removeHeaderBar 才能生效
-+    emit clipboardWindowVisibleChanged(true);
-+
-     QWindowList m_windowList = qGuiApp->allWindows();
-     foreach (QWindow *window, m_windowList) {
-         if (window->title() == "Preview Window") {
-@@ -242,7 +247,6 @@ void ClipboardBackend::showClipboardWindow()
-             }
-         }
-     }
--    emit clipboardWindowVisibleChanged(true);
- }
- 
- void ClipboardBackend::pasteClicked() const
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0030-.gitignore.patch ukui-clipboard-2.0.0.0/debian/patches/0030-.gitignore.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0030-.gitignore.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0030-.gitignore.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,448 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Thu, 25 Jul 2024 10:06:25 +0800
-Subject: =?utf-8?b?5aKe5YqgLmdpdGlnbm9yZeaWh+S7tg==?=
-
----
- .gitignore             |  77 ++++++++++++
- CMakeLists.txt.user    | 322 -------------------------------------------------
- FunctionMenuWindow.qml |   8 +-
- 3 files changed, 82 insertions(+), 325 deletions(-)
- create mode 100644 .gitignore
- delete mode 100644 CMakeLists.txt.user
-
-diff --git a/.gitignore b/.gitignore
-new file mode 100644
-index 0000000..eb7ad7c
---- /dev/null
-+++ b/.gitignore
-@@ -0,0 +1,77 @@
-+# This file is used to ignore files which are generated
-+# ----------------------------------------------------------------------------
-+
-+*~
-+*.autosave
-+*.a
-+*.core
-+*.moc
-+*.o
-+*.obj
-+*.orig
-+*.rej
-+*.so
-+*.so.*
-+*_pch.h.cpp
-+*_resource.rc
-+*.qm
-+.#*
-+*.*#
-+core
-+!core/
-+tags
-+.DS_Store
-+.directory
-+*.debug
-+Makefile*
-+*.prl
-+*.app
-+moc_*.cpp
-+ui_*.h
-+qrc_*.cpp
-+Thumbs.db
-+*.res
-+*.rc
-+/.qmake.cache
-+/.qmake.stash
-+
-+# qtcreator generated files
-+*.pro.user*
-+CMakeLists.txt.user*
-+
-+# xemacs temporary files
-+*.flc
-+
-+# Vim temporary files
-+.*.swp
-+
-+# Visual Studio generated files
-+*.ib_pdb_index
-+*.idb
-+*.ilk
-+*.pdb
-+*.sln
-+*.suo
-+*.vcproj
-+*vcproj.*.*.user
-+*.ncb
-+*.sdf
-+*.opensdf
-+*.vcxproj
-+*vcxproj.*
-+
-+# MinGW generated files
-+*.Debug
-+*.Release
-+
-+# Python byte code
-+*.pyc
-+
-+# Binaries
-+# --------
-+*.dll
-+*.exe
-+build
-+.vscode
-+.cache
-+.reuse
-\ No newline at end of file
-diff --git a/CMakeLists.txt.user b/CMakeLists.txt.user
-deleted file mode 100644
-index cb2dbc6..0000000
---- a/CMakeLists.txt.user
-+++ /dev/null
-@@ -1,322 +0,0 @@
--<?xml version="1.0" encoding="UTF-8"?>
--<!DOCTYPE QtCreatorProject>
--<!-- Written by QtCreator 6.0.2, 2024-07-22T18:07:36. -->
--<qtcreator>
-- <data>
--  <variable>EnvironmentId</variable>
--  <value type="QByteArray">{d397a54a-ddf7-4034-a190-47597eedd40c}</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.ActiveTarget</variable>
--  <value type="int">0</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.EditorSettings</variable>
--  <valuemap type="QVariantMap">
--   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
--   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
--   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
--   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
--    <value type="QString" key="language">Cpp</value>
--    <valuemap type="QVariantMap" key="value">
--     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
--    </valuemap>
--   </valuemap>
--   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
--    <value type="QString" key="language">QmlJS</value>
--    <valuemap type="QVariantMap" key="value">
--     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
--    </valuemap>
--   </valuemap>
--   <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
--   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
--   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
--   <value type="int" key="EditorConfiguration.IndentSize">4</value>
--   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
--   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
--   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
--   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
--   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
--   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
--   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
--   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
--   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
--   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
--   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
--   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
--   <value type="int" key="EditorConfiguration.TabSize">8</value>
--   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
--   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
--   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
--   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
--   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
--   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
--   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
--   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
--   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.PluginSettings</variable>
--  <valuemap type="QVariantMap">
--   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
--    <value type="bool" key="AutoTest.Framework.Boost">true</value>
--    <value type="bool" key="AutoTest.Framework.CTest">false</value>
--    <value type="bool" key="AutoTest.Framework.Catch">true</value>
--    <value type="bool" key="AutoTest.Framework.GTest">true</value>
--    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
--    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
--   <value type="int" key="AutoTest.RunAfterBuild">0</value>
--   <value type="bool" key="AutoTest.UseGlobal">true</value>
--   <valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
--   <value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
--   <value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.BuildSystem</value>
--   <valuemap type="QVariantMap" key="ClangTools">
--    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
--    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
--    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
--    <value type="int" key="ClangTools.ParallelJobs">16</value>
--    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
--    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
--    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
--    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
--   </valuemap>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.Target.0</variable>
--  <valuemap type="QVariantMap">
--   <value type="QString" key="DeviceType">Desktop</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">桌面</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">桌面</value>
--   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{7170c5d1-f8b8-4eb4-94e9-72842deb8cd6}</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
--   <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
--    <value type="QString" key="CMake.Build.Type">Debug</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=Debug
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-Debug</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
--    <value type="QString" key="CMake.Build.Type">Release</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=Release
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-Release</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
--    <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-RelWithDebInfo</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3">
--    <value type="QString" key="CMake.Build.Type">MinSizeRel</value>
--    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
---DCMAKE_BUILD_TYPE:STRING=MinSizeRel
---DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
---DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
---DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
---DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
---DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
--    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/kylin/ai/build-ukui-clipboard-unknown-MinSizeRel</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">all</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
--    </valuemap>
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
--     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
--      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
--       <value type="QString">clean</value>
--      </valuelist>
--      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
--      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
--     </valuemap>
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
--    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
--    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">4</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
--    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
--     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Deploy</value>
--     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
--    </valuemap>
--    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
--    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
--    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
--   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
--    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
--    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
--    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
--    <valuelist type="QVariantList" key="CustomOutputParsers"/>
--    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
--    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">ukui-clipboard</value>
--    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.ukui-clipboard</value>
--    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">ukui-clipboard</value>
--    <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
--    <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
--    <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
--    <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
--    <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
--    <value type="QString" key="RunConfiguration.WorkingDirectory.default">/home/kylin/ai/build-ukui-clipboard-unknown-Debug</value>
--   </valuemap>
--   <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
--  </valuemap>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.TargetCount</variable>
--  <value type="int">1</value>
-- </data>
-- <data>
--  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
--  <value type="int">22</value>
-- </data>
-- <data>
--  <variable>Version</variable>
--  <value type="int">22</value>
-- </data>
--</qtcreator>
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 2784eff..e7483dc 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -25,14 +25,16 @@ ApplicationWindow {
-     }
-     onVisibleChanged: {
-         if (visible) {
--            var pos = backend.getGlobalMousePosition()
--            x = pos.x + 2
--            y = pos.y + 2
-             optionMenu.visible = true
-         }
-     }
-     onActiveChanged: {
-         if (active) {
-+            // 将移送窗口位置放到onActiveChanged中执行,因为在onVisibleChanged中
-+            // 移动位置低概率在X11下不生效,从而显示到位置(0, 0)
-+            var pos = backend.getGlobalMousePosition()
-+            x = pos.x + 2
-+            y = pos.y + 2
-             backend.processClipboardData()
-         }
-     }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0031-UI.patch ukui-clipboard-2.0.0.0/debian/patches/0031-UI.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0031-UI.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0031-UI.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,86 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Thu, 25 Jul 2024 15:22:10 +0800
-Subject: =?utf-8?b?5oyJ6K6+6K6h5Zu+6LCD5pW05pm66IO957KY6LS06YCJ6aG56I+c5Y2V?=
- =?utf-8?b?55qEVUk=?=
-
----
- FunctionMenuWindow.qml | 34 ++++++++++++++++++++--------------
- 1 file changed, 20 insertions(+), 14 deletions(-)
-
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index e7483dc..2779900 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -9,11 +9,12 @@ ApplicationWindow {
-     width: 140
-     maximumWidth: width
-     minimumWidth: width
--    maximumHeight: optionMenu.minContextHeight
-+    maximumHeight: optionMenu.minContextHeight + topPaddings * 2
-     minimumHeight: maximumHeight
-     height: maximumHeight
-     title: "Function Menu Window"
--    property int paddings: 4
-+    property int leftpaddings: 4
-+    property int topPaddings: 6
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
- 
-@@ -45,16 +46,23 @@ ApplicationWindow {
-         }
-     }
- 
-+    background: Rectangle {
-+        id: windowback
-+        anchors.fill: parent
-+        color: "white"
-+        radius: Platform.Theme.windowRadius
-+    }
-+
-     Menu {
-         id: optionMenu
-         anchors.centerIn: parent
--        width: parent.width
-+        width: parent.width - contentWindow.leftpaddings * 2
-         visible: true
-         currentIndex: -1
--        property int minContextHeight: contentHeight < 35 ? 35 : contentHeight
-+        property int minContextHeight: contentHeight < 32 ? 32 : contentHeight
-         background: Rectangle {
-             anchors.fill: parent
--            color: "white"
-+            color: windowback.color
-             radius: Platform.Theme.windowRadius
-         }
-         onVisibleChanged: {
-@@ -69,23 +77,21 @@ ApplicationWindow {
-             model: backend.contentMenus
-             delegate: MenuItem {
-                 id: menuItem
-+                width: parent.width
-+                height: 32
-                 text: modelData.itemName
-                 highlighted: optionMenu.currentIndex === index
-                 contentItem: Label {
-                     text: menuItem.text
-                     font: menuItem.font
-                     verticalAlignment: Text.AlignVCenter
--                    leftPadding: paddings * 2
-+                    leftInset: 10
-                 }
--                background: Item {
-+                background: Rectangle {
-                     anchors.fill: menuItem
--                    Rectangle {
--                        width: parent.width - paddings * 2
--                        height: parent.height - paddings * 2
--                        radius: paddings
--                        anchors.centerIn: parent
--                        color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
--                    }
-+                    radius: contentWindow.leftpaddings
-+                    anchors.centerIn: parent
-+                    color: menuItem.highlighted ? Qt.rgba(0, 0, 0, 0.05) : "transparent"
-                 }
-                 onTriggered: {
-                     contentWindow.visible = false
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0032-.patch ukui-clipboard-2.0.0.0/debian/patches/0032-.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0032-.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0032-.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,21 +0,0 @@
-From: pangyi <pangyi@kylinos.cn>
-Date: Thu, 25 Jul 2024 16:03:09 +0800
-Subject: =?utf-8?b?5L+u5aSN5paH5pys6aKE6KeI55WM6Z2i5pi+56S655qE5YaF5a655qaC?=
- =?utf-8?b?546H5LiN5piv5LuO6aaW6KGM6aaW5a2X5byA5aeL55qE6Zeu6aKY?=
-
----
- TextEditArea.qml | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/TextEditArea.qml b/TextEditArea.qml
-index b04839a..f5de168 100644
---- a/TextEditArea.qml
-+++ b/TextEditArea.qml
-@@ -65,6 +65,7 @@ Item {
-                         this.clear()
-                         this.paste()
-                     }
-+                    flick.contentX = 0
-                     flick.contentY = 0
-                 }
-             }
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/0033-update-changelog.patch ukui-clipboard-2.0.0.0/debian/patches/0033-update-changelog.patch
--- ukui-clipboard-1.0.0.0/debian/patches/0033-update-changelog.patch	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/0033-update-changelog.patch	1970-01-01 08:00:00.000000000 +0800
@@ -1,333 +0,0 @@
-From: zhaokexin <zhaokexin@kylinos.cn>
-Date: Wed, 21 Aug 2024 16:44:08 +0800
-Subject: update changelog
-
----
- CMakeLists.txt         |  3 +++
- ClipboardWindow.qml    | 33 +++++++++++++++++++++++++++++----
- FunctionMenuWindow.qml | 23 ++++++++++++++++-------
- clipboardbackend.cpp   | 24 ++++++++++++++++++++++++
- clipboardbackend.h     |  5 +++++
- 5 files changed, 77 insertions(+), 11 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index abdd3f0..1acaf21 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -41,6 +41,8 @@ find_package(ukui-quick COMPONENTS platform REQUIRED)
- find_package(QT NAMES Qt6 Qt5 COMPONENTS LinguistTools REQUIRED)
- find_package(Qt${QT_VERSION_MAJOR} COMPONENTS LinguistTools REQUIRED)
- 
-+pkg_check_modules(GSETTINGQT REQUIRED gsettings-qt)
-+
- set(TS_FILES)
- set(QM_FILES)
- 
-@@ -117,6 +119,7 @@ target_link_libraries(ukui-clipboard PRIVATE
-     ${X11_LIBRARIES}
-     ${EXTERNAL_LIBS}
-     ukui-quick::platform
-+    ${GSETTINGQT_LIBRARIES}
- )
- 
- install(TARGETS ukui-clipboard ${INSTALL_TARGETS_DEFAULT_ARGS})
-diff --git a/ClipboardWindow.qml b/ClipboardWindow.qml
-index 89ea404..6f1311d 100644
---- a/ClipboardWindow.qml
-+++ b/ClipboardWindow.qml
-@@ -11,6 +11,7 @@ ApplicationWindow {
-     id: clipboardWindow
-     visible: false
-     title: "Preview Window"
-+
-     property int paddings: 4
-     property int shadowWidth: 8
-     property int windowWidth: 568
-@@ -20,6 +21,7 @@ ApplicationWindow {
-     property int windowRadius: 18
-     property var themeColor: Platform.Theme.themeColor
-     property var highlightColor: Platform.Theme.color(Platform.Theme.Highlight, Platform.Theme.Active, 1)
-+
-     width: windowWidth
-     height: windowHeight
-     maximumWidth: width
-@@ -49,6 +51,12 @@ ApplicationWindow {
-         function onClipboardWindowVisibleChanged(visible) {
-             clipboardWindow.visible = visible
-         }
-+        function onIconThemeChanged() {
-+            menuBack.restoreIconName = backend.getIcon(backend.displayedIconName)
-+        }
-+        function onDisplayedIconNameChanged() {
-+            menuBack.restoreIconName = backend.getIcon(backend.displayedIconName)
-+        }
-     }
- 
-     // 鼠标拖动
-@@ -77,8 +85,10 @@ ApplicationWindow {
-         color: Qt.rgba(255, 255, 255, 0.95)
-         radius: windowRadius
-         clip : true
-+
-         property int lastDisplayedType: -1
--        property string restoreIconName: backend.displayedIconName
-+        property var restoreIconName: backend.getIcon(backend.displayedIconName)
-+
-         focus: true
-         Keys.enabled: true
-         Keys.onPressed: {
-@@ -109,7 +119,7 @@ ApplicationWindow {
-                     width: 14
-                     anchors.centerIn: parent
-                     mode: backend.displayingType !== backend.originalType ? UkuiItems.Icon.Highlight : UkuiItems.Icon.Normal
--                    source: backend.getIcon(menuBack.restoreIconName);
-+                    source: menuBack.restoreIconName
-                 }
- 
-                 ToolTip {
-@@ -179,7 +189,7 @@ ApplicationWindow {
-             id: menuBackground
-             anchors.right: parent.right
-             anchors.top: topLine.bottom
--            width: 120 + paddings * 2
-+            width: buttonMenu.width + paddings * 2
-             height: buttonMenu.height + paddings * 2
-             visible: buttonMenu.visible
-             color: "transparent"
-@@ -194,18 +204,24 @@ ApplicationWindow {
-             // 关联菜单
-             Menu {
-                 id: buttonMenu
--                width: 120
-+                width: control.menuItemWidth
-                 anchors.centerIn: menuBackground
-                 background: Rectangle {
-                     anchors.fill: parent
-                     radius: paddings * 2
-                     color: "white"
-                 }
-+
-+
-                 Repeater {
-                     id: control
-                     model: backend.contentMenus
-+
-+                    property int menuItemWidth: 120
-+
-                     delegate: MenuItem {
-                         id: menuItem
-+                        width: control.menuItemWidth
-                         text: modelData.itemName
-                         contentItem: Row {
-                             spacing: paddings
-@@ -219,6 +235,7 @@ ApplicationWindow {
-                                 source: Qt.resolvedUrl("image://theme/" + modelData.iconName)
-                             }
-                             Label {
-+                                id: label
-                                 text: menuItem.text
-                                 font: menuItem.font
-                                 verticalAlignment: Text.AlignVCenter
-@@ -252,6 +269,12 @@ ApplicationWindow {
-                             backend.setDisplayingType(currentType)
-                             stack.switchToSpecifiedPage(currentType)
-                         }
-+                        Component.onCompleted: {
-+                            var contentItemWidth = 16 + label.contentWidth +
-+                                    control.count*paddings + paddings * 3
-+                            control.menuItemWidth = control.menuItemWidth >= contentItemWidth ?
-+                                        control.menuItemWidth : contentItemWidth
-+                        }
-                     }
-                 }
- 
-@@ -329,6 +352,7 @@ ApplicationWindow {
-                         hoverEnabled: true
-                         onClicked: {
-                             clipboardWindow.visible = false
-+                            backend.setClipboardWindowVisible(false)
-                         }
-                     }
-                 }
-@@ -368,6 +392,7 @@ ApplicationWindow {
-                             stack.currentItem.copyToClipboard()
-                         }
-                         clipboardWindow.visible = false
-+                        backend.setClipboardWindowVisible(false)
-                         backend.performPasteOperation()
-                     }
- 
-diff --git a/FunctionMenuWindow.qml b/FunctionMenuWindow.qml
-index 2779900..bf352df 100644
---- a/FunctionMenuWindow.qml
-+++ b/FunctionMenuWindow.qml
-@@ -6,9 +6,9 @@ import org.ukui.quick.platform 1.0 as Platform
- 
- ApplicationWindow {
-     id: contentWindow
--    width: 140
--    maximumWidth: width
--    minimumWidth: width
-+    width: optionMenu.width + leftpaddings * 2
-+    maximumWidth: optionMenu.width + leftpaddings * 2
-+    minimumWidth: optionMenu.width + leftpaddings * 2
-     maximumHeight: optionMenu.minContextHeight + topPaddings * 2
-     minimumHeight: maximumHeight
-     height: maximumHeight
-@@ -18,6 +18,7 @@ ApplicationWindow {
-     // 设置窗口背景颜色为透明,以便于显示圆角效果
-     color: "transparent"
- 
-+
-     Connections {
-         target: backend
-         function onContentMenuVisibleChanged(visible) {
-@@ -56,7 +57,7 @@ ApplicationWindow {
-     Menu {
-         id: optionMenu
-         anchors.centerIn: parent
--        width: parent.width - contentWindow.leftpaddings * 2
-+        width: control.menuItemWidth
-         visible: true
-         currentIndex: -1
-         property int minContextHeight: contentHeight < 32 ? 32 : contentHeight
-@@ -75,14 +76,18 @@ ApplicationWindow {
-         Repeater {
-             id: control
-             model: backend.contentMenus
-+            width: menuItemWidth
-+
-+            property int menuItemWidth: 140 - leftpaddings * 2
-+
-             delegate: MenuItem {
-                 id: menuItem
--                width: parent.width
-+                width: control.menuItemWidth
-                 height: 32
--                text: modelData.itemName
-                 highlighted: optionMenu.currentIndex === index
-                 contentItem: Label {
--                    text: menuItem.text
-+                    id: label
-+                    text: modelData.itemName
-                     font: menuItem.font
-                     verticalAlignment: Text.AlignVCenter
-                     leftInset: 10
-@@ -111,6 +116,10 @@ ApplicationWindow {
-                     onExited: optionMenu.currentIndex = -1
-                     onClicked: menuItem.triggered()
-                 }
-+                Component.onCompleted: {
-+                    control.menuItemWidth = control.menuItemWidth >= (label.contentWidth + leftPadding*2) ?
-+                                control.menuItemWidth : (label.contentWidth + leftPadding*2)
-+                }
-             }
-         }
-     }
-diff --git a/clipboardbackend.cpp b/clipboardbackend.cpp
-index db829da..8a634de 100644
---- a/clipboardbackend.cpp
-+++ b/clipboardbackend.cpp
-@@ -12,6 +12,7 @@
- #include <QQmlContext>
- #include <QWindow>
- #include <QtConcurrent>
-+#include <QGSettings/QGSettings>
- 
- // kf5
- #include <KF5/KGlobalAccel/KGlobalAccel>
-@@ -42,6 +43,8 @@ ClipboardBackend::ClipboardBackend(QObject *parent)
-         m_pNormalTip->setText(tr("Successfully copied, please paste at the corresponding location"));
-     }
-     connect(&m_timer, &QTimer::timeout, this, &ClipboardBackend::pasteClicked);
-+
-+    monitorIconThemeChange();
- }
- 
- void ClipboardBackend::setDisplayingType(int type)
-@@ -188,6 +191,10 @@ bool ClipboardBackend::processClipboardData()
-     return true;
- }
- 
-+void ClipboardBackend::setClipboardWindowVisible(bool visible) {
-+    m_clipboardWindowVisible = visible;
-+}
-+
- void ClipboardBackend::open()
- {
-     if (processClipboardData()) {
-@@ -206,6 +213,9 @@ void ClipboardBackend::monitorShortCut()
-     KGlobalAccel::self()->setDefaultShortcut(action, QList<QKeySequence>() << keySeq);
-     KGlobalAccel::self()->setShortcut(action, QList<QKeySequence>() << keySeq);
-     connect(action, &QAction::triggered, this, [this]() {
-+        if (m_clipboardWindowVisible) {
-+            return;
-+        }
-         if (processClipboardData()) {
-             showContentMenu();
-         }
-@@ -235,6 +245,7 @@ void ClipboardBackend::showClipboardWindow()
- {
-     // 必须写在前面,使得 qml 组件的 visible 属性为 true,wayland 下 removeHeaderBar 才能生效
-     emit clipboardWindowVisibleChanged(true);
-+    setClipboardWindowVisible(true);
- 
-     QWindowList m_windowList = qGuiApp->allWindows();
-     foreach (QWindow *window, m_windowList) {
-@@ -285,6 +296,19 @@ void ClipboardBackend::pasteClicked() const
-     XCloseDisplay(disp);
- }
- 
-+void ClipboardBackend::monitorIconThemeChange() {
-+    if (!QGSettings::isSchemaInstalled("org.ukui.style")) {
-+        qWarning() << __FUNCTION__ << __FILE__ << "can not find schema org.ukui.style";
-+        return;
-+    }
-+    QGSettings* iconThemeSettings = new QGSettings("org.ukui.style", "/org/ukui/style/");
-+    connect(iconThemeSettings, &QGSettings::changed, [&](const QString& value) {
-+        if (value == "iconThemeName") {
-+            emit iconThemeChanged();
-+        }
-+    });
-+}
-+
- int ClipboardBackend::imageNumber() const
- {
-     if (m_imageProvider) {
-diff --git a/clipboardbackend.h b/clipboardbackend.h
-index e2e2660..59aab79 100644
---- a/clipboardbackend.h
-+++ b/clipboardbackend.h
-@@ -52,6 +52,8 @@ public:
-     Q_INVOKABLE void showClipboardWindow();
-     Q_INVOKABLE bool processClipboardData();
- 
-+    Q_INVOKABLE void setClipboardWindowVisible(bool visible);
-+
- public:
-     InMemoryImageProvider *getImageProvider();
-     void open();
-@@ -64,6 +66,7 @@ private:
-     void monitorShortCut();
-     void showContentMenu();
-     void pasteClicked() const;
-+    void monitorIconThemeChange();
- 
- signals:
-     void contentMenusChanged();
-@@ -75,6 +78,7 @@ signals:
-     void imageSizeChanged();
-     void contentMenuVisibleChanged(bool visible);
-     void clipboardWindowVisibleChanged(bool visible);
-+    void iconThemeChanged();
- 
- private:
-     QList<QObject*> m_contentMenus;
-@@ -89,6 +93,7 @@ private:
-     // 不需要自己释放,engine 会管理释放
-     InMemoryImageProvider *m_imageProvider = nullptr;
-     bool m_isWayland = false;
-+    bool m_clipboardWindowVisible = false;
- };
- 
- #endif // CLIPBOARDBACKEND_H
diff -Nru ukui-clipboard-1.0.0.0/debian/patches/series ukui-clipboard-2.0.0.0/debian/patches/series
--- ukui-clipboard-1.0.0.0/debian/patches/series	2024-08-21 16:43:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/debian/patches/series	1970-01-01 08:00:00.000000000 +0800
@@ -1,33 +0,0 @@
-0001-Changelog-1.0.0.0-ok0.4.patch
-0002-Changelog-1.0.0.0-ok0.5.patch
-0003-Feat.patch
-0004-Fix.patch
-0005-Fix.patch
-0006-Fix.patch
-0007-Feat-TextEdit.patch
-0008-Feat-TextEdit.patch
-0009-changelog.patch
-0010-changelog.patch
-0011-changelog.patch
-0012-Fix-wayland.patch
-0013-Feat-wayland.patch
-0014-.patch
-0015-.patch
-0016-Fix.patch
-0017-follow-theme.patch
-0018-update-changelog.patch
-0019-Fix-I9S87E-wayland.patch
-0020-enter.patch
-0021-.patch
-0022-wayland-tip.patch
-0023-wayland-menu.patch
-0024-wayland.patch
-0025-ukui-clipboard-1.0.0.0-ok1.5.patch
-0026-Fix-bug-IA7J2Q-200-shift.patch
-0027-ukui-clipboard-1.0.0.0-ok1.6.patch
-0028-wayland-X11.patch
-0029-ukui-clipboard-1.0.0.0-ok1.7.patch
-0030-.gitignore.patch
-0031-UI.patch
-0032-.patch
-0033-update-changelog.patch
diff -Nru ukui-clipboard-1.0.0.0/main.cpp ukui-clipboard-2.0.0.0/main.cpp
--- ukui-clipboard-1.0.0.0/main.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/main.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -4,15 +4,25 @@
 #include <QKeyEvent>
 #include <QCommandLineOption>
 #include <QCommandLineParser>
+#include <QQuickWindow>
+#include <QTranslator>
+#include <QDebug>
+
+#include <ukui-log4qt.h>
 
 #include "qtsingleapplication.h"
 #include "clipboardbackend.h"
+#include "windowsettings.h"
+
 int main(int argc, char *argv[])
 {
+    initUkuiLog4qt("ukui-clipboard");
+    qDebug()<<"ukui-clipboard start!";
 
     QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
 
     QtSingleApplication app(argc, argv);
+
     QCommandLineParser parser;
     QCommandLineOption showWorkSpaceOption("show-menu","show contentMenu");
     parser.addOption(showWorkSpaceOption);
@@ -25,7 +35,18 @@
         return EXIT_SUCCESS;
     }
 
+    QTranslator translator;
+    if (!translator.load(QLocale::system(), QLatin1String("ukui-clipboard"),QLatin1String("_"), QLatin1String(":/"))){
+        // 如果指定语言的翻译文件未找到,尝试加载默认的翻译文件
+        if (!translator.load(QString("ukui-clipboard"))) {
+            qWarning() << "Failed to load translation files!";
+        }
+    }
+
+    app.installTranslator(&translator);
+
     QQmlApplicationEngine engine;
+    //注册了ContentMenu这个类,在qml文件中import这个类则可互相调用
     qmlRegisterUncreatableType<ContentMenu>(
         "ContentMenu", 1, 0, "ContentType",
         "Not be instantiated in QML, we should only pass the enum types to QML "
@@ -35,9 +56,10 @@
         backend.open();
     });
 
+    //将backend对象注册到元对象系统中,即将backend注册到QML中
     engine.rootContext()->setContextProperty("backend", &backend);
     engine.addImageProvider(QLatin1String("inMemoryImages"), backend.getImageProvider());
-    const QUrl url(QStringLiteral("qrc:/main.qml"));
+    const QUrl url(QStringLiteral("qrc:/FunctionMenuWindow.qml"));
     QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
                      &app, [url](QObject *obj, const QUrl &objUrl) {
         if (!obj && url == objUrl)
@@ -47,5 +69,7 @@
     const QUrl url1(QStringLiteral("qrc:/ClipboardWindow.qml"));
     engine.load(url1);
 
+    WindowSettings settings;
+
     return app.exec();
 }
diff -Nru ukui-clipboard-1.0.0.0/main.qml ukui-clipboard-2.0.0.0/main.qml
--- ukui-clipboard-1.0.0.0/main.qml	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/main.qml	1970-01-01 08:00:00.000000000 +0800
@@ -1,121 +0,0 @@
-import QtQuick 2.15
-import QtGraphicalEffects 1.0
-import QtQuick.Window 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-import TitleLessWindow 1.0 as MyWd
-import ContentMenu 1.0
-
-MyWd.DeactiveWindow {
-    id: contentWindow
-    visible: false
-    width: 140
-    height: content.height + 12
-    title: qsTr("Content Window")
-    property bool shouldVisible: false
-    // 设置窗口背景颜色为透明,以便于显示圆角效果
-    color: "transparent"
-
-    Rectangle {
-        id: menuBack
-        anchors.centerIn: parent
-        width: contentWindow.width
-        height: contentWindow.height
-        color: "white"
-        clip : true
-        ListView {
-            id: content
-            x: 4
-            y: 6
-            width: content.contentWidth
-            height: content.contentHeight
-            model: backend.contentMenus
-            delegate: Label {
-                id: contentButton
-                Text {
-                    text: modelData.itemName
-                    anchors.fill: parent
-                    leftPadding: 20  // 设置文本缩进
-                    elide: Text.ElideRight
-                    textFormat: Text.RichText
-                    verticalAlignment: Text.AlignVCenter
-                }
-                background: Rectangle {
-                    id: buttonBackground
-                    anchors.fill: parent
-                    color: Qt.rgba(255, 255, 255, 1)
-                    radius: 4
-                }
-                height: 32
-                width: 132
-                MouseArea {
-                    anchors.fill: parent
-                    hoverEnabled: true
-
-                    onEntered: {
-                        buttonBackground.color =  Qt.rgba(0, 0, 0, 0.05)
-                    }
-
-                    onExited: {
-                        buttonBackground.color =  Qt.rgba(0, 0, 0, 0)
-                    }
-
-                    onClicked: {
-                        contentWindow.visible = false
-                        var currentType =  backend.contentMenus[index].contentType
-                        if (currentType === ContentType.Original) {
-                            backend.pasteClicked()
-                        } else {
-                            backend.setDisplayedType(currentType)
-                            clipboardComponent.createObject()
-                        }
-
-                    }
-                }
-            }
-
-            onContentHeightChanged: {
-                contentWindow.height = content.contentHeight + 16
-            }
-        }
-
-    }
-
-    Connections {
-        target: contentWindow
-        function onWindowDeactivated() {
-            console.log("contentWindow deactivated!")
-
-            // 在这里处理窗口失活逻辑
-            if (contentWindow.visible) {
-                contentWindow.visible = false
-            }
-        }
-    }
-    Connections {
-        target: backend
-        function onContentMenuVisibleChanged(visible) {
-            contentWindow.visible = visible
-        }
-    }
-
-    onVisibleChanged: {
-        if (visible) {
-            var pos = backend.getGlobalMousePosition()
-            contentWindow.x = pos.x
-            contentWindow.y = pos.y
-        }
-    }
-
-    Component {
-        id: clipboardComponent
-        ClipboardWindow {
-            id: clipboardWindow
-            visible: true
-        }
-    }
-}
-
-
-
-
diff -Nru ukui-clipboard-1.0.0.0/qml.qrc ukui-clipboard-2.0.0.0/qml.qrc
--- ukui-clipboard-1.0.0.0/qml.qrc	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qml.qrc	2024-12-19 16:45:36.000000000 +0800
@@ -1,6 +1,19 @@
 <RCC>
     <qresource prefix="/">
-        <file>main.qml</file>
+        <file>FunctionMenuWindow.qml</file>
         <file>ClipboardWindow.qml</file>
+        <file>TextEditArea.qml</file>
+        <file>ShadowComponent.qml</file>
+        <file>ImagePreviewArea.qml</file>
+        <file>ukui-clipboard_zh_Hant.qm</file>
+        <file>ukui-clipboard_zh_CN.qm</file>
+        <file>ukui-clipboard_ug.qm</file>
+        <file>ukui-clipboard_mn.qm</file>
+        <file>ukui-clipboard_ky.qm</file>
+        <file>ukui-clipboard_kk.qm</file>
+        <file>ukui-clipboard_fr.qm</file>
+        <file>ukui-clipboard_es.qm</file>
+        <file>ukui-clipboard_de.qm</file>
+        <file>ukui-clipboard_bo_CN.qm</file>
     </qresource>
 </RCC>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/CMakeLists.txt ukui-clipboard-2.0.0.0/qtsingleapplication/CMakeLists.txt
--- ukui-clipboard-1.0.0.0/qtsingleapplication/CMakeLists.txt	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/CMakeLists.txt	1970-01-01 08:00:00.000000000 +0800
@@ -1,13 +0,0 @@
-cmake_minimum_required(VERSION 3.16)
-project(qtsingleapplication)
-
-find_package(Qt5 COMPONENTS
-        Core Gui Widgets Network
-        REQUIRED)
-
-include_directories(src)
-set(SRCS src/qtsingleapplication.h src/qtsingleapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
-
-add_library(${PROJECT_NAME} STATIC ${SRCS})
-target_include_directories(${PROJECT_NAME} PRIVATE src)
-target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network)
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/CMakeLists.txt.user ukui-clipboard-2.0.0.0/qtsingleapplication/CMakeLists.txt.user
--- ukui-clipboard-1.0.0.0/qtsingleapplication/CMakeLists.txt.user	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/CMakeLists.txt.user	1970-01-01 08:00:00.000000000 +0800
@@ -1,319 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE QtCreatorProject>
-<!-- Written by QtCreator 6.0.2, 2024-04-25T20:13:27. -->
-<qtcreator>
- <data>
-  <variable>EnvironmentId</variable>
-  <value type="QByteArray">{1a65eb07-ee52-4e75-a1fd-d28a7169ab9e}</value>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.ActiveTarget</variable>
-  <value type="int">0</value>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.EditorSettings</variable>
-  <valuemap type="QVariantMap">
-   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
-   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
-   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
-   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
-    <value type="QString" key="language">Cpp</value>
-    <valuemap type="QVariantMap" key="value">
-     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
-    </valuemap>
-   </valuemap>
-   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
-    <value type="QString" key="language">QmlJS</value>
-    <valuemap type="QVariantMap" key="value">
-     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
-    </valuemap>
-   </valuemap>
-   <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
-   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
-   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
-   <value type="int" key="EditorConfiguration.IndentSize">4</value>
-   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
-   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
-   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
-   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
-   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
-   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
-   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
-   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
-   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
-   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
-   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
-   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
-   <value type="int" key="EditorConfiguration.TabSize">8</value>
-   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
-   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
-   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
-   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
-   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
-   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
-   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
-   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
-   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
-  </valuemap>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.PluginSettings</variable>
-  <valuemap type="QVariantMap">
-   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
-    <value type="bool" key="AutoTest.Framework.Boost">true</value>
-    <value type="bool" key="AutoTest.Framework.CTest">false</value>
-    <value type="bool" key="AutoTest.Framework.Catch">true</value>
-    <value type="bool" key="AutoTest.Framework.GTest">true</value>
-    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
-    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
-   </valuemap>
-   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
-   <value type="int" key="AutoTest.RunAfterBuild">0</value>
-   <value type="bool" key="AutoTest.UseGlobal">true</value>
-   <valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
-   <value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
-   <value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.BuildSystem</value>
-   <valuemap type="QVariantMap" key="ClangTools">
-    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
-    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
-    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
-    <value type="int" key="ClangTools.ParallelJobs">2</value>
-    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
-    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
-    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
-    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
-   </valuemap>
-  </valuemap>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.Target.0</variable>
-  <valuemap type="QVariantMap">
-   <value type="QString" key="DeviceType">Desktop</value>
-   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">桌面</value>
-   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">桌面</value>
-   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{9d266a42-f1f4-404f-94ea-e0d9972026b2}</value>
-   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
-   <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
-   <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
-    <value type="QString" key="CMake.Build.Type">Debug</value>
-    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
--DCMAKE_BUILD_TYPE:STRING=Debug
--DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
--DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
--DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
--DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
--DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-Debug</value>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">all</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-    </valuemap>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">clean</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-    </valuemap>
-    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-   </valuemap>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
-    <value type="QString" key="CMake.Build.Type">Release</value>
-    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
--DCMAKE_BUILD_TYPE:STRING=Release
--DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
--DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
--DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
--DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
--DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-Release</value>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">all</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-    </valuemap>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">clean</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-    </valuemap>
-    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-   </valuemap>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
-    <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value>
-    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
--DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo
--DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
--DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
--DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
--DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
--DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-RelWithDebInfo</value>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">all</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-    </valuemap>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">clean</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-    </valuemap>
-    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-   </valuemap>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3">
-    <value type="QString" key="CMake.Build.Type">MinSizeRel</value>
-    <value type="QString" key="CMake.Initial.Parameters">-GUnix Makefiles
--DCMAKE_BUILD_TYPE:STRING=MinSizeRel
--DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
--DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
--DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
--DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
--DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
-    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jiaodian/桌面/clipboard-1.1.0/ukui-clipboard-1.0.0/build-qtsingleapplication-unknown-MinSizeRel</value>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">all</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
-    </valuemap>
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
-     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
-      <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
-       <value type="QString">clean</value>
-      </valuelist>
-      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
-      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
-     </valuemap>
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
-    </valuemap>
-    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
-    <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
-    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
-   </valuemap>
-   <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">4</value>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
-    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
-     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Deploy</value>
-     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
-    </valuemap>
-    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
-    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
-    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
-   </valuemap>
-   <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
-   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
-    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
-    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
-    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
-    <valuelist type="QVariantList" key="CustomOutputParsers"/>
-    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
-    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
-    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
-    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value>
-    <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
-    <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
-    <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
-    <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
-   </valuemap>
-   <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
-  </valuemap>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.TargetCount</variable>
-  <value type="int">1</value>
- </data>
- <data>
-  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
-  <value type="int">22</value>
- </data>
- <data>
-  <variable>Version</variable>
-  <value type="int">22</value>
- </data>
-</qtcreator>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/INSTALL.TXT ukui-clipboard-2.0.0.0/qtsingleapplication/INSTALL.TXT
--- ukui-clipboard-1.0.0.0/qtsingleapplication/INSTALL.TXT	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/INSTALL.TXT	1970-01-01 08:00:00.000000000 +0800
@@ -1,254 +0,0 @@
-INSTALLATION INSTRUCTIONS
-
-These instructions refer to the package you are installing as
-some-package.tar.gz or some-package.zip. The .zip file is intended for use
-on Windows.
-
-The directory you choose for the installation will be referred to as
-your-install-dir.
-
-Note to Qt Visual Studio Integration users: In the instructions below,
-instead of building from command line with nmake, you can use the menu
-command 'Qt->Open Solution from .pro file' on the .pro files in the
-example and plugin directories, and then build from within Visual
-Studio.
-
-Unpacking and installation
---------------------------
-
-1.  Unpacking the archive (if you have not done so already).
-
-    On Unix and Mac OS X (in a terminal window):
-
-	cd your-install-dir
-	gunzip some-package.tar.gz
-	tar xvf some-package.tar
-
-    This creates the subdirectory some-package containing the files.
-
-    On Windows:
-
-    Unpack the .zip archive by right-clicking it in explorer and
-    choosing "Extract All...". If your version of Windows does not
-    have zip support, you can use the infozip tools available
-    from www.info-zip.org.
-
-    If you are using the infozip tools (in a command prompt window):
-	cd your-install-dir
-	unzip some-package.zip
-
-2.  Configuring the package.
-
-    The configure script is called "configure" on unix/mac and
-    "configure.bat" on Windows. It should be run from a command line
-    after cd'ing to the package directory. 
-
-    You can choose whether you want to use the component by including
-    its source code directly into your project, or build the component
-    as a dynamic shared library (DLL) that is loaded into the
-    application at run-time. The latter may be preferable for
-    technical or licensing (LGPL) reasons. If you want to build a DLL,
-    run the configure script with the argument "-library". Also see
-    the note about usage below.
-
-    (Components that are Qt plugins, e.g. styles and image formats,
-    are by default built as a plugin DLL.)
-
-    The configure script will prompt you in some cases for further
-    information. Answer these questions and carefully read the license text
-    before accepting the license conditions. The package cannot be used if
-    you do not accept the license conditions.
-
-3.  Building the component and examples (when required).
-
-    If a DLL is to be built, or if you would like to build the
-    examples, next give the commands
-
-        qmake
-        make          [or nmake if your are using Microsoft Visual C++]
-
-    The example program(s) can be found in the directory called
-    "examples" or "example".
-
-    Components that are Qt plugins, e.g. styles and image formats, are
-    ready to be used as soon as they are built, so the rest of this
-    installation instruction can be skipped.
-
-4.  Building the Qt Designer plugin (optional).
-
-    Some of the widget components are provided with plugins for Qt
-    Designer. To build and install the plugin, cd into the
-    some-package/plugin directory and give the commands
-
-	qmake
-	make           [or nmake if your are using Microsoft Visual C++]
-
-    Restart Qt Designer to make it load the new widget plugin.
-
-    Note: If you are using the built-in Qt Designer from the Qt Visual
-    Studio Integration, you will need to manually copy the plugin DLL
-    file, i.e. copy
-	%QTDIR%\plugins\designer\some-component.dll 
-    to the Qt Visual Studio Integration plugin path, typically:
-	C:\Program Files\Trolltech\Qt VS Integration\plugins
-
-    Note: If you for some reason are using a Qt Designer that is built
-    in debug mode, you will need to build the plugin in debug mode
-    also. Edit the file plugin.pro in the plugin directory, changing
-    'release' to 'debug' in the CONFIG line, before running qmake.
-
-
-
-Solutions components are intended to be used directly from the package
-directory during development, so there is no 'make install' procedure.
-
-
-Using a component in your project
----------------------------------
-
-To use this component in your project, add the following line to the
-project's .pro file (or do the equivalent in your IDE):
-
-    include(your-install-dir/some-package/src/some-package.pri)
-
-This adds the package's sources and headers to the SOURCES and HEADERS
-project variables respectively (or, if the component has been
-configured as a DLL, it adds that library to the LIBS variable), and
-updates INCLUDEPATH to contain the package's src
-directory. Additionally, the .pri file may include some dependencies
-needed by the package.
-
-To include a header file from the package in your sources, you can now
-simply use:
-
-    #include <SomeClass>
-
-or alternatively, in pre-Qt 4 style:
-
-    #include <some-class.h>
-
-Refer to the documentation to see the classes and headers this
-components provides.
-
-
-
-Install documentation (optional)
---------------------------------
-
-The HTML documentation for the package's classes is located in the
-your-install-dir/some-package/doc/html/index.html. You can open this
-file and read the documentation with any web browser.
-
-To install the documentation into Qt Assistant (for Qt version 4.4 and
-later):
-
-1.  In Assistant, open the Edit->Preferences dialog and choose the
-    Documentation tab. Click the Add... button and select the file
-       your-install-dir/some-package/doc/html/some-package.qch
-    
-For Qt versions prior to 4.4, do instead the following:
-
-1.  The directory your-install-dir/some-package/doc/html contains a
-    file called some-package.dcf. Execute the following commands in a
-    shell, command prompt or terminal window:
-
-	cd your-install-dir/some-package/doc/html/
-	assistant -addContentFile some-package.dcf
-
-The next time you start Qt Assistant, you can access the package's
-documentation.
-
-
-Removing the documentation from assistant
------------------------------------------
-
-If you have installed the documentation into Qt Assistant, and want to uninstall it, do as follows, for Qt version 4.4 and later:
-
-1.  In Assistant, open the Edit->Preferences dialog and choose the
-    Documentation tab. In the list of Registered Documentation, select
-    the item com.nokia.qtsolutions.some-package_version, and click
-    the Remove button.
-
-For Qt versions prior to 4.4, do instead the following:
-
-1.  The directory your-install-dir/some-package/doc/html contains a
-    file called some-package.dcf. Execute the following commands in a
-    shell, command prompt or terminal window:
-
-	cd your-install-dir/some-package/doc/html/
-	assistant -removeContentFile some-package.dcf
-
-
-
-Using the component as a DLL
-----------------------------
-
-1. Normal components
-
-    The shared library (DLL) is built and placed in the
-    some-package/lib directory. It is intended to be used directly
-    from there during development. When appropriate, both debug and
-    release versions are built, since the run-time linker will in some
-    cases refuse to load a debug-built DLL into a release-built
-    application or vice versa.
-
-    The following steps are taken by default to help the dynamic
-    linker to locate the DLL at run-time (during development):
-
-    Unix: The some-package.pri file will add linker instructions to
-    add the some-package/lib directory to the rpath of the
-    executable. (When distributing, or if your system does not support
-    rpath, you can copy the shared library to another place that is
-    searched by the dynamic linker, e.g. the "lib" directory of your
-    Qt installation.)
-
-    Mac: The full path to the library is hardcoded into the library
-    itself, from where it is copied into the executable at link time,
-    and ready by the dynamic linker at run-time. (When distributing,
-    you will want to edit these hardcoded paths in the same way as for
-    the Qt DLLs. Refer to the document "Deploying an Application on
-    Mac OS X" in the Qt Reference Documentation.)
-
-    Windows: the .dll file(s) are copied into the "bin" directory of
-    your Qt installation. The Qt installation will already have set up
-    that directory to be searched by the dynamic linker.
-
-
-2. Plugins
-
-    For Qt Solutions plugins (e.g. image formats), both debug and
-    release versions of the plugin are built by default when
-    appropriate, since in some cases the release Qt library will not
-    load a debug plugin, and vice versa. The plugins are automatically
-    copied into the plugins directory of your Qt installation when
-    built, so no further setup is required.
-
-    Plugins may also be built statically, i.e. as a library that will be
-    linked into your application executable, and so will not need to
-    be redistributed as a separate plugin DLL to end users. Static
-    building is required if Qt itself is built statically. To do it,
-    just add "static" to the CONFIG variable in the plugin/plugin.pro
-    file before building. Refer to the "Static Plugins" section in the
-    chapter "How to Create Qt Plugins" for explanation of how to use a
-    static plugin in your application. The source code of the example
-    program(s) will also typically contain the relevant instructions
-    as comments.
-
-
-
-Uninstalling
-------------
-
-    The following command will remove any fils that have been
-    automatically placed outside the package directory itself during
-    installation and building
-
-	make distclean [or nmake if your are using Microsoft Visual C++]
-
-    If Qt Assistant documentation or Qt Designer plugins have been
-    installed, they can be uninstalled manually, ref. above.
-
-
-Enjoy! :)
-
-- The Qt Solutions Team.
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/README.TXT ukui-clipboard-2.0.0.0/qtsingleapplication/README.TXT
--- ukui-clipboard-1.0.0.0/qtsingleapplication/README.TXT	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/README.TXT	1970-01-01 08:00:00.000000000 +0800
@@ -1,33 +0,0 @@
-Qt Solutions Component: Single Application
-
-The QtSingleApplication component provides support for
-applications that can be only started once per user.
-
-
-
-Version history:
-
-2.0: - Version 1.3 ported to Qt 4.
-
-2.1: - Fix compilation problem on Mac.
-
-2.2: - Really fix the Mac compilation problem.
-     - Mac: fix crash due to wrong object releasing.
-     - Mac: Fix memory leak.
-
-2.3: - Windows: Force creation of internal widget to make it work
-     with Qt 4.2.
-
-2.4: - Fix the system for automatic window raising on message
-     reception. NOTE: minor API change.
-
-2.5: - Mac: Fix isRunning() to work and report correctly.
-
-2.6: - - initialize() is now obsolete, no longer necessary to call
-     it
-     - - Fixed race condition where multiple instances migth be started
-     - - QtSingleCoreApplication variant provided for non-GUI (console)
-     usage
-     - Complete reimplementation. Visible changes:
-     - LGPL release.
-
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/buildlib/buildlib.pro ukui-clipboard-2.0.0.0/qtsingleapplication/buildlib/buildlib.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/buildlib/buildlib.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/buildlib/buildlib.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,13 +0,0 @@
-TEMPLATE=lib
-CONFIG += qt dll qtsingleapplication-buildlib
-mac:CONFIG += absolute_library_soname
-win32|mac:!wince*:!win32-msvc:!macx-xcode:CONFIG += debug_and_release build_all
-include(../src/qtsingleapplication.pri)
-TARGET = $$QTSINGLEAPPLICATION_LIBNAME
-DESTDIR = $$QTSINGLEAPPLICATION_LIBDIR
-win32 {
-    DLLDESTDIR = $$[QT_INSTALL_BINS]
-    QMAKE_DISTCLEAN += $$[QT_INSTALL_BINS]\\$${QTSINGLEAPPLICATION_LIBNAME}.dll
-}
-target.path = $$DESTDIR
-INSTALLS += target
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/common.pri ukui-clipboard-2.0.0.0/qtsingleapplication/common.pri
--- ukui-clipboard-1.0.0.0/qtsingleapplication/common.pri	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/common.pri	1970-01-01 08:00:00.000000000 +0800
@@ -1,14 +0,0 @@
-exists(config.pri):infile(config.pri, SOLUTIONS_LIBRARY, yes): CONFIG += qtsingleapplication-uselib
-
-TEMPLATE += fakelib
-greaterThan(QT_MAJOR_VERSION, 5)|\
-  if(equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 4))|\
-  if(equals(QT_MAJOR_VERSION, 5):equals(QT_MINOR_VERSION, 4):greaterThan(QT_PATCH_VERSION, 1)) {
-    QTSINGLEAPPLICATION_LIBNAME = $$qt5LibraryTarget(QtSolutions_SingleApplication-head)
-} else {
-    QTSINGLEAPPLICATION_LIBNAME = $$qtLibraryTarget(QtSolutions_SingleApplication-head)
-}
-TEMPLATE -= fakelib
-
-QTSINGLEAPPLICATION_LIBDIR = $$PWD/lib
-unix:qtsingleapplication-uselib:!qtsingleapplication-buildlib:QMAKE_RPATHDIR += $$QTSINGLEAPPLICATION_LIBDIR
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/configure ukui-clipboard-2.0.0.0/qtsingleapplication/configure
--- ukui-clipboard-1.0.0.0/qtsingleapplication/configure	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/configure	1970-01-01 08:00:00.000000000 +0800
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
-    echo "Usage: $0 [-library]"
-    echo 
-    echo "-library: Build the component as a dynamic library (DLL). Default is to"
-    echo "          include the component source code directly in the application."
-    echo 
-    exit 0
-fi
-
-rm -f config.pri
-if [ "x$1" = "x-library" ]; then
-    echo "Configuring to build this component as a dynamic library."
-    echo "SOLUTIONS_LIBRARY = yes" > config.pri
-fi
-
-echo
-echo "This component is now configured."
-echo
-echo "To build the component library (if requested) and example(s),"
-echo "run qmake and your make command."
-echo
-echo "To remove or reconfigure, run make distclean."
-echo
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/configure.bat ukui-clipboard-2.0.0.0/qtsingleapplication/configure.bat
--- ukui-clipboard-1.0.0.0/qtsingleapplication/configure.bat	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/configure.bat	1970-01-01 08:00:00.000000000 +0800
@@ -1,43 +0,0 @@
-:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-:: SPDX-License-Identifier: BSD-3-Clause
-
-@echo off
-
-rem
-rem "Main"
-rem
-
-if not "%1"=="" (
-    if not "%1"=="-library" (
-        call :PrintUsage
-        goto EOF
-    )
-)
-
-if exist config.pri. del config.pri
-if "%1"=="-library" (
-    echo Configuring to build this component as a dynamic library.
-    echo SOLUTIONS_LIBRARY = yes > config.pri
-)
-
-echo .
-echo This component is now configured.
-echo .
-echo To build the component library (if requested) and example(s),
-echo run qmake and your make or nmake command.
-echo .
-echo To remove or reconfigure, run make (nmake) distclean.
-echo .
-goto EOF
-
-:PrintUsage
-echo Usage: configure.bat [-library]
-echo .
-echo -library: Build the component as a dynamic library (DLL). Default is to
-echo           include the component source directly in the application.
-echo           A DLL may be preferable for technical or licensing (LGPL) reasons.
-echo .
-goto EOF
-
-
-:EOF
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/classic.css ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/classic.css
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/classic.css	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/classic.css	1970-01-01 08:00:00.000000000 +0800
@@ -1,284 +0,0 @@
-BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
-  font-family: Arial, Geneva, Helvetica, sans-serif;
-}
-H1 {
-  text-align: center;
-  font-size: 160%;
-}
-H2 {
-  font-size: 120%;
-}
-H3 {
-  font-size: 100%;
-}
-
-h3.fn,span.fn
-{
-  background-color: #eee;
-  border-width: 1px;
-  border-style: solid;
-  border-color: #ddd;
-  font-weight: bold;
-  padding: 6px 0px 6px 10px;
-  margin: 42px 0px 0px 0px;
-}
-
-hr {
-  border: 0;
-  color: #a0a0a0;
-  background-color: #ccc;
-  height: 1px;
-  width: 100%;
-  text-align: left;
-  margin: 34px 0px 34px 0px;
-}
-
-table.valuelist {
-	border-width: 1px 1px 1px 1px;
-	border-style: solid;
-	border-color: #dddddd;
-	border-collapse: collapse;
-	background-color: #f0f0f0;
-}
-
-table.indextable {
-	border-width: 1px 1px 1px 1px;
-	border-style: solid;
-	border-collapse: collapse;
-	background-color: #f0f0f0;
-    border-color:#555;
-    font-size: 100%;
-}
-
-table td.largeindex {
-	border-width: 1px 1px 1px 1px;
-	border-collapse: collapse;
-	background-color: #f0f0f0;
-    border-color:#555;
-    font-size: 120%;
-}
-
-table.valuelist th {
-	border-width: 1px 1px 1px 2px;
-	padding: 4px;
-	border-style: solid;
-	border-color: #666;
-    color:white;
-    background-color:#666;
-}
-
-th.titleheader  {
-	border-width: 1px 0px 1px 0px;
-	padding: 2px;
-	border-style: solid;
-	border-color: #666;
-    color:white;
-    background-color:#555;
-    background-image:url('images/gradient.png')};
-    background-repeat: repeat-x;
-    font-size: 100%;
-}
-
-
-th.largeheader {
-	border-width: 1px 0px 1px 0px;
-	padding: 4px;
-	border-style: solid;
-	border-color: #444;
-    color:white;
-    background-color:#555555;
-    font-size: 120%;
-}
-
-p {
-
-  margin-left: 4px;
-  margin-top: 8px;
-  margin-bottom: 8px;
-}
-
-a:link
-{
-  color: #0046ad;
-  text-decoration: none
-}
-
-a:visited
-{
-  color: #672967;
-  text-decoration: none
-}
-
-a.obsolete
-{
-  color: #661100;
-  text-decoration: none
-}
-
-a.compat
-{
-  color: #661100;
-  text-decoration: none
-}
-
-a.obsolete:visited
-{
-  color: #995500;
-  text-decoration: none
-}
-
-a.compat:visited
-{
-  color: #995500;
-  text-decoration: none
-}
-
-body
-{
-  background: #ffffff;
-  color: black
-}
-
-table.generic, table.annotated
-{
-  border-width: 1px;
-  border-color:#bbb;
-  border-style:solid;  
-  border-collapse:collapse;
-}
-
-table td.memItemLeft {
-  width: 180px;
-  padding: 2px 0px 0px 8px;
-  margin: 4px;
-  border-width: 1px;
-  border-color: #E0E0E0;
-  border-style: none;
-  font-size: 100%;
-  white-space: nowrap
-}
-
-table td.memItemRight {
-  padding: 2px 8px 0px 8px;
-  margin: 4px;
-  border-width: 1px;
-  border-color: #E0E0E0;
-  border-style: none;
-  font-size: 100%;
-}
-
-table tr.odd {
-  background: #f0f0f0;
-  color: black;
-}
-
-table tr.even {
-  background: #e4e4e4;
-  color: black;
-}
-
-table.annotated th {
-  padding: 3px;
-  text-align: left
-}
-
-table.annotated td {
-  padding: 3px;
-}
-
-table tr pre
-{
-  padding-top: 0px;
-  padding-bottom: 0px;
-  padding-left: 0px;
-  padding-right: 0px;
-  border: none;
-  background: none
-}
-
-tr.qt-style
-{
-  background: #96E066;
-  color: black
-}
-
-body pre
-{
-  padding: 0.2em;
-  border: #e7e7e7 1px solid;
-  background: #f1f1f1;
-  color: black
-}
-
-table tr.qt-code pre
-{
-  padding: 0.2em;
-  border: #e7e7e7 1px solid;
-  background: #f1f1f1;
-  color: black
-}
-
-span.preprocessor, span.preprocessor a
-{
-  color: darkblue;
-}
-
-span.comment
-{
-  color: darkred;
-  font-style: italic
-}
-
-span.string,span.char
-{
-  color: darkgreen;
-}
-
-.title
-{
-    text-align: center
-}
-
-.subtitle
-{
-    font-size: 0.8em
-}
-
-.small-subtitle
-{
-    font-size: 0.65em
-}
-
-.qmlitem {
-    padding: 0;
-}
-
-.qmlname {
-    white-space: nowrap;
-}
-
-.qmltype {
-    text-align: center;
-    font-size: 160%;
-}
-
-.qmlproto {
-    background-color: #eee;
-    border-width: 1px;
-    border-style: solid;
-    border-color: #ddd;
-    font-weight: bold;
-    padding: 6px 10px 6px 10px;
-    margin: 42px 0px 0px 0px;
-}
-
-.qmlreadonly {
-    float: right;
-    color: red
-}
-
-.qmldoc {
-}
-
-*.qmlitem p {
-}
Binary files /tmp/tmp9gdptr6t/pDqV9ROnFH/ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/images/qt-logo.png and /tmp/tmp9gdptr6t/g1CnYQZ71I/ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/images/qt-logo.png differ
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/index.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/index.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/index.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/index.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- index.qdoc -->
-<head>
-  <title>Single Application</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">Single Application<br /><span class="subtitle"></span>
-</h1>
-<a name="description"></a>
-<h2>Description</h2>
-<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> component provides support for applications that can be only started once per user.</p>
-<p>For some applications it is useful or even critical that they are started only once by any user. Future attempts to start the application should activate any already running instance, and possibly perform requested actions, e.g&#x2e; loading a file, in that instance.</p>
-<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> class provides an interface to detect a running instance, and to send command strings to that instance. For console (non-GUI) applications, the <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> variant is provided, which avoids dependency on <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a>.</p>
-<a name="classes"></a>
-<h2>Classes</h2>
-<ul>
-<li><a href="qtsingleapplication.html">QtSingleApplication</a></li>
-<li><a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a></li>
-</ul>
-<a name="examples"></a>
-<h2>Examples</h2>
-<ul>
-<li><a href="qtsingleapplication-example-trivial.html">A Trivial Example</a></li>
-<li><a href="qtsingleapplication-example-loader.html">Loading Documents</a></li>
-<li><a href="qtsinglecoreapplication-example-console.html">A Non-GUI Example</a></li>
-</ul>
-<a name="tested-platforms"></a>
-<h2>Tested platforms</h2>
-<ul>
-<li>Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005</li>
-<li>Qt 4.4, 4.5 / Linux / gcc</li>
-<li>Qt 4.4, 4.5 / MacOS X 10.5 / gcc</li>
-</ul>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,175 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- loader.qdoc -->
-<head>
-  <title>Loading Documents</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">Loading Documents<br /><span class="subtitle"></span>
-</h1>
-<p>The application in this example loads or prints the documents passed as commandline parameters to further instances of this application.</p>
-<pre><span class="comment"> /****************************************************************************
- **
- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- ** Contact: http://www.qt-project.org/legal
- **
- ** This file is part of the Qt Solutions component.
- **
- ** You may use this file under the terms of the BSD license as follows:
- **
- ** &quot;Redistribution and use in source and binary forms, with or without
- ** modification, are permitted provided that the following conditions are
- ** met:
- **   * Redistributions of source code must retain the above copyright
- **     notice, this list of conditions and the following disclaimer.
- **   * Redistributions in binary form must reproduce the above copyright
- **     notice, this list of conditions and the following disclaimer in
- **     the documentation and/or other materials provided with the
- **     distribution.
- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
- **     the names of its contributors may be used to endorse or promote
- **     products derived from this software without specific prior written
- **     permission.
- **
- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
- **
- ****************************************************************************/</span>
-
- #include &lt;qtsingleapplication.h&gt;
- #include &lt;QtCore/QFile&gt;
- #include &lt;QtGui/QMainWindow&gt;
- #include &lt;QtGui/QPrinter&gt;
- #include &lt;QtGui/QPainter&gt;
- #include &lt;QtGui/QTextEdit&gt;
- #include &lt;QtGui/QMdiArea&gt;
- #include &lt;QtCore/QTextStream&gt;
-
- class MainWindow : public QMainWindow
- {
-     Q_OBJECT
- public:
-     MainWindow();
-
- public slots:
-     void handleMessage(const QString&amp; message);
-
- signals:
-     void needToShow();
-
- private:
-     QMdiArea *workspace;
- };</pre>
-<p>The user interface in this application is a <a href="http://qt.nokia.com/doc/4.6/qmainwindow.html">QMainWindow</a> subclass with a <a href="http://qt.nokia.com/doc/4.6/qmdiarea.html">QMdiArea</a> as the central widget. It implements a slot <tt>handleMessage()</tt> that will be connected to the messageReceived() signal of the <a href="qtsingleapplication.html">QtSingleApplication</a> class.</p>
-<pre> MainWindow::MainWindow()
- {
-     workspace = new QMdiArea(this);
-
-     setCentralWidget(workspace);
- }</pre>
-<p>The <a href="http://qt.nokia.com/doc/4.6/designer-to-know.html">MainWindow</a> constructor creates a minimal user interface.</p>
-<pre> void MainWindow::handleMessage(const QString&amp; message)
- {
-     enum Action {
-         Nothing,
-         Open,
-         Print
-     } action;
-
-     action = Nothing;
-     QString filename = message;
-     if (message.toLower().startsWith(&quot;/print &quot;)) {
-         filename = filename.mid(7);
-         action = Print;
-     } else if (!message.isEmpty()) {
-         action = Open;
-     }
-     if (action == Nothing) {
-         emit needToShow();
-         return;
-     }
-
-     QFile file(filename);
-     QString contents;
-     if (file.open(QIODevice::ReadOnly))
-         contents = file.readAll();
-     else
-         contents = &quot;[[Error: Could not load file &quot; + filename + &quot;]]&quot;;
-
-     QTextEdit *view = new QTextEdit;
-     view-&gt;setPlainText(contents);
-
-     switch(action) {</pre>
-<p>The handleMessage() slot interprets the message passed in as a filename that can be prepended with <i>/print</i> to indicate that the file should just be printed rather than loaded.</p>
-<pre>     case Print:
-         {
-             QPrinter printer;
-             view-&gt;print(&amp;printer);
-             delete view;
-         }
-         break;
-
-     case Open:
-         {
-             workspace-&gt;addSubWindow(view);
-             view-&gt;setWindowTitle(message);
-             view-&gt;show();
-             emit needToShow();
-         }
-         break;
-     default:
-         break;
-     };
- }</pre>
-<p>Loading the file will also activate the window.</p>
-<pre> #include &quot;main.moc&quot;
-
- int main(int argc, char **argv)
- {
-     QtSingleApplication instance(&quot;File loader QtSingleApplication example&quot;, argc, argv);
-     QString message;
-     for (int a = 1; a &lt; argc; ++a) {
-         message += argv[a];
-         if (a &lt; argc-1)
-             message += &quot; &quot;;
-     }
-
-     if (instance.sendMessage(message))
-         return 0;</pre>
-<p>The <tt>main</tt> entry point function creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object, and creates a message to send to a running instance of the application. If the message was sent successfully the process exits immediately.</p>
-<pre>     MainWindow mw;
-     mw.handleMessage(message);
-     mw.show();
-
-     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
-                      &amp;mw, SLOT(handleMessage(const QString&amp;)));
-
-     instance.setActivationWindow(&amp;mw, false);
-     QObject::connect(&amp;mw, SIGNAL(needToShow()), &amp;instance, SLOT(activateWindow()));
-
-     return instance.exec();
- }</pre>
-<p>If the message could not be sent the application starts up. Note that <tt>false</tt> is passed to the call to setActivationWindow() to prevent automatic activation for every message received, e.g&#x2e; when the application should just print a file. Instead, the message handling function determines whether activation is requested, and signals that by emitting the needToShow() signal. This is then simply connected directly to <a href="qtsingleapplication.html">QtSingleApplication</a>'s activateWindow() slot.</p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- trivial.qdoc -->
-<head>
-  <title>A Trivial Example</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">A Trivial Example<br /><span class="subtitle"></span>
-</h1>
-<p>The application in this example has a log-view that displays messages sent by further instances of the same application.</p>
-<p>The example demonstrates the use of the <a href="qtsingleapplication.html">QtSingleApplication</a> class to detect and communicate with a running instance of the application using the sendMessage() API. The messageReceived() signal is used to display received messages in a <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a> log.</p>
-<pre><span class="comment"> /****************************************************************************
- **
- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- ** Contact: http://www.qt-project.org/legal
- **
- ** This file is part of the Qt Solutions component.
- **
- ** You may use this file under the terms of the BSD license as follows:
- **
- ** &quot;Redistribution and use in source and binary forms, with or without
- ** modification, are permitted provided that the following conditions are
- ** met:
- **   * Redistributions of source code must retain the above copyright
- **     notice, this list of conditions and the following disclaimer.
- **   * Redistributions in binary form must reproduce the above copyright
- **     notice, this list of conditions and the following disclaimer in
- **     the documentation and/or other materials provided with the
- **     distribution.
- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
- **     the names of its contributors may be used to endorse or promote
- **     products derived from this software without specific prior written
- **     permission.
- **
- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
- **
- ****************************************************************************/</span>
-
- #include &lt;qtsingleapplication.h&gt;
- #include &lt;QtGui/QTextEdit&gt;
-
- class TextEdit : public QTextEdit
- {
-     Q_OBJECT
- public:
-     TextEdit(QWidget *parent = 0)
-         : QTextEdit(parent)
-     {}
- public slots:
-     void append(const QString &amp;str)
-     {
-         QTextEdit::append(str);
-     }
- };
-
- #include &quot;main.moc&quot;
-
- int main(int argc, char **argv)
- {
-     QtSingleApplication instance(argc, argv);</pre>
-<p>The example has only the <tt>main</tt> entry point function. A <a href="qtsingleapplication.html">QtSingleApplication</a> object is created immediately.</p>
-<pre>     if (instance.sendMessage(&quot;Wake up!&quot;))
-         return 0;</pre>
-<p>If another instance of this application is already running, sendMessage() will succeed, and this instance just exits immediately.</p>
-<pre>     TextEdit logview;
-     logview.setReadOnly(true);
-     logview.show();</pre>
-<p>Otherwise the instance continues as normal and creates the user interface.</p>
-<pre>     instance.setActivationWindow(&amp;logview);
-
-     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
-                      &amp;logview, SLOT(append(const QString&amp;)));
-
-     return instance.exec();</pre>
-<p>The <tt>logview</tt> object is also set as the application's activation window. Every time a message is received, the window will be raised and activated automatically.</p>
-<p>The messageReceived() signal is also connected to the <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a>'s append() slot. Every message received from further instances of this application will be displayed in the log.</p>
-<p>Finally the event loop is entered.</p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-members.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-members.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-members.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-members.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,235 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- qtsingleapplication.cpp -->
-<head>
-  <title>List of All Members for QtSingleApplication</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">List of All Members for QtSingleApplication</h1>
-<p>This is the complete list of members for <a href="qtsingleapplication.html">QtSingleApplication</a>, including inherited members.</p>
-<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr><td width="45%" valign="top"><ul>
-<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#ColorSpec-enum">ColorSpec</a></b></div></li>
-<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
-<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
-<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#QS60MainApplicationFactory-typedef">QS60MainApplicationFactory</a></b></div></li>
-<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a></b></div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp;, char **, bool )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp;, char **, Type )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display *, Qt::HANDLE, Qt::HANDLE )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display *, int &amp;, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display *, const QString &amp;, int, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#aboutQt">aboutQt</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const : QWidget *</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeModalWidget">activeModalWidget</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activePopupWidget">activePopupWidget</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeWindow">activeWindow</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#alert">alert</a></b> ( QWidget *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#allWidgets">allWidgets</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">autoMaximizeThreshold</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">autoSipEnabled</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#beep">beep</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#changeOverrideCursor">changeOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#clipboard">clipboard</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#closeAllWindows">closeAllWindows</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#colorSpec">colorSpec</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitData">commitData</a></b> ( QSessionManager &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitDataRequest">commitDataRequest</a></b> ( QSessionManager &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">cursorFlashTime</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktop">desktop</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktopSettingsAware">desktopSettingsAware</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">doubleClickInterval</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#event">event</a></b> ( QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusChanged">focusChanged</a></b> ( QWidget *, QWidget * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusWidget">focusWidget</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font">font</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-2">font</a></b> ( const QWidget * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-3">font</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontDatabaseChanged">fontDatabaseChanged</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontMetrics">fontMetrics</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">globalStrut</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#id">id</a></b> () const : QString</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#inputContext">inputContext</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isEffectEnabled">isEffectEnabled</a></b> ( Qt::UIEffect )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isLeftToRight">isLeftToRight</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isRightToLeft">isRightToLeft</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isSessionRestored">isSessionRestored</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputDirection">keyboardInputDirection</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">keyboardInputInterval</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputLocale">keyboardInputLocale</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardModifiers">keyboardModifiers</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keypadNavigationEnabled">keypadNavigationEnabled</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#lastWindowClosed">lastWindowClosed</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">layoutDirection</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#macEventFilter">macEventFilter</a></b> ( EventHandlerCallRef, EventRef )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#mouseButtons">mouseButtons</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#navigationMode">navigationMode</a></b> ()</div></li>
-</ul></td><td valign="top"><ul>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#overrideCursor">overrideCursor</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette">palette</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-2">palette</a></b> ( const QWidget * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-3">palette</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">quitOnLastWindowClosed</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsDecoration">qwsDecoration</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsEventFilter">qwsEventFilter</a></b> ( QWSEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetCustomColors">qwsSetCustomColors</a></b> ( QRgb *, int, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration">qwsSetDecoration</a></b> ( QDecoration * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration-2">qwsSetDecoration</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#restoreOverrideCursor">restoreOverrideCursor</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveState">saveState</a></b> ( QSessionManager &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveStateRequest">saveStateRequest</a></b> ( QSessionManager &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionId">sessionId</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionKey">sessionKey</a></b> () const</div></li>
-<li><div class="fn"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget *, bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setActiveWindow">setActiveWindow</a></b> ( QWidget * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">setAutoMaximizeThreshold</a></b> ( const int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">setAutoSipEnabled</a></b> ( const bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setColorSpec">setColorSpec</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">setCursorFlashTime</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setDesktopSettingsAware">setDesktopSettingsAware</a></b> ( bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">setDoubleClickInterval</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setEffectEnabled">setEffectEnabled</a></b> ( Qt::UIEffect, bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setFont">setFont</a></b> ( const QFont &amp;, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">setGlobalStrut</a></b> ( const QSize &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setGraphicsSystem">setGraphicsSystem</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setInputContext">setInputContext</a></b> ( QInputContext * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">setKeyboardInputInterval</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">setLayoutDirection</a></b> ( Qt::LayoutDirection )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setNavigationMode">setNavigationMode</a></b> ( Qt::NavigationMode )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setOverrideCursor">setOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setPalette">setPalette</a></b> ( const QPalette &amp;, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">setQuitOnLastWindowClosed</a></b> ( bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">setStartDragDistance</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">setStartDragTime</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle">setStyle</a></b> ( QStyle * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle-2">setStyle</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">setStyleSheet</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">setWheelScrollLines</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">setWindowIcon</a></b> ( const QIcon &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">startDragDistance</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">startDragTime</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#style">style</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">styleSheet</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianEventFilter">symbianEventFilter</a></b> ( const QSymbianEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianProcessEvent">symbianProcessEvent</a></b> ( const QSymbianEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#syncX">syncX</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt">topLevelAt</a></b> ( const QPoint &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt-2">topLevelAt</a></b> ( int, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelWidgets">topLevelWidgets</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#type">type</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">wheelScrollLines</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt">widgetAt</a></b> ( const QPoint &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt-4">widgetAt</a></b> ( int, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">windowIcon</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11EventFilter">x11EventFilter</a></b> ( XEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11ProcessEvent">x11ProcessEvent</a></b> ( XEvent * )</div></li>
-</ul>
-</td></tr>
-</table></p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- qtsingleapplication.cpp -->
-<head>
-  <title>Obsolete Members for QtSingleApplication</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">Obsolete Members for QtSingleApplication</h1>
-<p><b>The following class members are obsolete.</b> They are provided to keep old source code working. We strongly advise against using them in new code.</p>
-<p><ul><li><a href="qtsingleapplication.html">QtSingleApplication class reference</a></li></ul></p>
-<h2>Public Functions</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication-obsolete.html#initialize">initialize</a></b> ( bool <i>dummy</i> = true )&nbsp;&nbsp;<tt> (obsolete)</tt></td></tr>
-</table>
-<hr />
-<h2>Member Function Documentation</h2>
-<h3 class="fn"><a name="initialize"></a>void QtSingleApplication::initialize ( bool <i>dummy</i> = true )</h3>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.dcf ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.dcf
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.dcf	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.dcf	1970-01-01 08:00:00.000000000 +0800
@@ -1,40 +0,0 @@
-<!DOCTYPE DCF>
-<DCF ref="index.html" icon="qtsingleapplication.png" imagedir="../../gif" title="Qt Solutions: Single Application Documentation">
-<section ref="classes.html" title="Classes">
-    <section ref="qtsingleapplication.html" title="QtSingleApplication Class Reference">
-        <keyword ref="qtsingleapplication.html">QtSingleApplication</keyword>
-        <keyword ref="qtsingleapplication.html#activateWindow">activateWindow</keyword>
-        <keyword ref="qtsingleapplication.html#activationWindow">activationWindow</keyword>
-        <keyword ref="qtsingleapplication.html#id">id</keyword>
-        <keyword ref="qtsingleapplication.html#isRunning">isRunning</keyword>
-        <keyword ref="qtsingleapplication.html#messageReceived">messageReceived</keyword>
-        <keyword ref="qtsingleapplication.html#sendMessage">sendMessage</keyword>
-        <keyword ref="qtsingleapplication.html#setActivationWindow">setActivationWindow</keyword>
-        <section ref="qtsingleapplication-members.html" title="List of all members"/>
-        <section ref="qtsingleapplication-obsolete.html" title="Obsolete members"/>
-    </section>
-    <section ref="qtsinglecoreapplication.html" title="QtSingleCoreApplication Class Reference">
-        <keyword ref="qtsinglecoreapplication.html">QtSingleCoreApplication</keyword>
-        <keyword ref="qtsinglecoreapplication.html#id">id</keyword>
-        <keyword ref="qtsinglecoreapplication.html#isRunning">isRunning</keyword>
-        <keyword ref="qtsinglecoreapplication.html#messageReceived">messageReceived</keyword>
-        <keyword ref="qtsinglecoreapplication.html#sendMessage">sendMessage</keyword>
-        <section ref="qtsinglecoreapplication-members.html" title="List of all members"/>
-    </section>
-</section>
-<section ref="overviews.html" title="Overviews">
-    <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example">
-        <keyword ref="qtsinglecoreapplication-example-console.html">A non-GUI example</keyword>
-    </section>
-    <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example">
-        <keyword ref="qtsingleapplication-example-trivial.html">A Trivial Example</keyword>
-    </section>
-    <section ref="qtsingleapplication-example-loader.html" title="Loading Documents">
-        <keyword ref="qtsingleapplication-example-loader.html">Loading Documents</keyword>
-    </section>
-    <section ref="index.html" title="Single Application">
-        <keyword ref="index.html">Single Application</keyword>
-    </section>
-</section>
-<section ref="examples.html" title="Tutorial &amp; Examples"/>
-</DCF>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- qtsingleapplication.cpp -->
-<head>
-  <title>QtSingleApplication Class Reference</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">QtSingleApplication Class Reference</h1>
-<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application. <a href="#details">More...</a></p>
-<pre> #include &lt;QtSingleApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>.</p>
-<ul>
-<li><a href="qtsingleapplication-members.html">List of all members, including inherited members</a></li>
-<li><a href="qtsingleapplication-obsolete.html">Obsolete members</a></li>
-</ul>
-<hr />
-<a name="public-functions"></a>
-<h2>Public Functions</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, Type <i>type</i> )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display * <i>dpy</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display * <i>dpy</i>, const QString &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">QWidget * </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#id">id</a></b> () const</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> ()</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget * <i>aw</i>, bool <i>activateOnMessage</i> = true )</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>16 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-functions">QApplication</a></li>
-<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
-</ul>
-<hr />
-<a name="public-slots"></a>
-<h2>Public Slots</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>7 public slots inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-slots">QApplication</a></li>
-<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
-</ul>
-<hr />
-<a name="signals"></a>
-<h2>Signals</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>5 signals inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#signals">QApplication</a></li>
-<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
-</ul>
-<h3>Additional Inherited Members</h3>
-<ul>
-<li><div class="fn"></div>13 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#properties">QApplication</a></li>
-<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
-<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
-<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
-<li><div class="fn"></div>73 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#static-public-members">QApplication</a></li>
-<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
-<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
-<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#protected-functions">QApplication</a></li>
-<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
-<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
-<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
-</ul>
-<a name="details"></a>
-<hr />
-<h2>Detailed Description</h2>
-<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application.</p>
-<p>This class allows you to create applications where only one instance should be running at a time. I.e&#x2e;, if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server.</p>
-<p>By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead.</p>
-<p>The application should create the QtSingleApplication object early in the startup phase, and call <a href="qtsingleapplication.html#isRunning">isRunning</a>() to find out if another instance of this application is already running. If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. In this case, the application should continue with the initialization of the application user interface before entering the event loop with <a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a>(), as normal.</p>
-<p>The <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal will be emitted when the running application receives messages from another instance of the same application. When a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>() function and the <a href="qtsingleapplication.html#activateWindow">activateWindow</a>() slot.</p>
-<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, another instance is already running. It may be alerted to the fact that another instance has started by using the <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() function. Also data such as startup parameters (e.g&#x2e; the name of the file the user wanted this new instance to open) can be passed to the running instance with this function. Then, the application should terminate (or enter client mode).</p>
-<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, but <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() fails, that is an indication that the running instance is frozen.</p>
-<p>Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that).</p>
-<pre><span class="comment"> // Original</span>
- int main(int argc, char **argv)
- {
-     QApplication app(argc, argv);
-
-     MyMainWidget mmw;
-     mmw.show();
-     return app.exec();
- }
-
-<span class="comment"> // Single instance</span>
- int main(int argc, char **argv)
- {
-     QtSingleApplication app(argc, argv);
-
-     if (app.isRunning())
-         return !app.sendMessage(someDataString);
-
-     MyMainWidget mmw;
-     app.setActivationWindow(&amp;mmw);
-     mmw.show();
-     return app.exec();
- }</pre>
-<p>Once this QtSingleApplication instance is destroyed (normally when the process exits or crashes), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call <a href="qtsingleapplication.html#isRunning">isRunning</a>() or <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() will assume the role as the new running instance.</p>
-<p>For console (non-GUI) applications, <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> may be used instead of this class, to avoid the dependency on the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
-<p>See also <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>.</p>
-<hr />
-<h2>Member Function Documentation</h2>
-<h3 class="fn"><a name="QtSingleApplication"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</h3>
-<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>GUIenabled</i> are passed on to the QAppliation constructor.</p>
-<p>If you are creating a console application (i.e&#x2e; setting <i>GUIenabled</i> to false), you may consider using <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> instead.</p>
-<h3 class="fn"><a name="QtSingleApplication-2"></a>QtSingleApplication::QtSingleApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QAppliation constructor.</p>
-<h3 class="fn"><a name="QtSingleApplication-3"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a> <i>type</i> )</h3>
-<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>type</i> are passed on to the QAppliation constructor.</p>
-<h3 class="fn"><a name="QtSingleApplication-4"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-<h3 class="fn"><a name="QtSingleApplication-5"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-<h3 class="fn"><a name="QtSingleApplication-6"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
-<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <i>appId</i>. <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
-<h3 class="fn"><a name="activateWindow"></a>void QtSingleApplication::activateWindow ()&nbsp;&nbsp;<tt> [slot]</tt></h3>
-<p>De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set.</p>
-<p>This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance.</p>
-<p>This function should typically be called in response to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal. By default, that will happen automatically, if an activation window has been set.</p>
-<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), <a href="qtsingleapplication.html#messageReceived">messageReceived</a>(), and <a href="qtsingleapplication-obsolete.html#initialize" class="obsolete">initialize</a>().</p>
-<h3 class="fn"><a name="activationWindow"></a><a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * QtSingleApplication::activationWindow () const</h3>
-<p>Returns the applications activation window if one has been set by calling <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), otherwise returns 0.</p>
-<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>().</p>
-<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleApplication::id () const</h3>
-<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
-<h3 class="fn"><a name="isRunning"></a>bool QtSingleApplication::isRunning ()</h3>
-<p>Returns true if another instance of this application is running; otherwise false.</p>
-<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
-<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>().</p>
-<h3 class="fn"><a name="messageReceived"></a>void QtSingleApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
-<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
-<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>(), <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), and <a href="qtsingleapplication.html#activateWindow">activateWindow</a>().</p>
-<h3 class="fn"><a name="sendMessage"></a>bool QtSingleApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
-<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsingleapplication.html">QtSingleApplication</a> object in the running instance will emit the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
-<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
-<p>See also <a href="qtsingleapplication.html#isRunning">isRunning</a>() and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
-<h3 class="fn"><a name="setActivationWindow"></a>void QtSingleApplication::setActivationWindow ( <a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * <i>aw</i>, bool <i>activateOnMessage</i> = true )</h3>
-<p>Sets the activation window of this application to <i>aw</i>. The activation window is the widget that will be activated by <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(). This is typically the application's main window.</p>
-<p>If <i>activateOnMessage</i> is true (the default), the window will be activated automatically every time a message is received, just prior to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal being emitted.</p>
-<p>See also <a href="qtsingleapplication.html#activationWindow">activationWindow</a>(), <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(), and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.index ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.index
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.index	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.index	1970-01-01 08:00:00.000000000 +0800
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE QDOCINDEX>
-<INDEX url="" title="Qt Solutions: Single Application Documentation" version="">
-    <namespace access="public" threadsafety="unspecified" status="commendable" name="" href="" location="" module="">
-        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" href="qtsinglecoreapplication.html" location="qtsinglecoreapplication.h" bases="QCoreApplication" module="">
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleCoreApplication(int &amp; argc, char ** argv)">
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication-2" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleCoreApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
-                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleCoreApplication::isRunning" href="qtsinglecoreapplication.html#isRunning" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
-            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleCoreApplication::id" href="qtsinglecoreapplication.html#id" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
-            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleCoreApplication::sendMessage" href="qtsinglecoreapplication.html#sendMessage" location="qtsinglecoreapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
-                <parameter left="const QString &amp;" right="" name="message" default=""/>
-                <parameter left="int" right="" name="timeout" default="5000"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleCoreApplication::messageReceived" href="qtsinglecoreapplication.html#messageReceived" location="qtsinglecoreapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
-                <parameter left="const QString &amp;" right="" name="message" default=""/>
-            </function>
-        </class>
-        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" href="qtsingleapplication.html" location="qtsingleapplication.h" bases="QApplication" module="">
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, bool GUIenabled)">
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-                <parameter left="bool" right="" name="GUIenabled" default="true"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-2" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
-                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-3" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="3" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, Type type)">
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-                <parameter left="Type" right="" name="type" default=""/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-4" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="4" type="" signature="QtSingleApplication(Display * dpy, Qt::HANDLE visual, Qt::HANDLE cmap)">
-                <parameter left="Display *" right="" name="dpy" default=""/>
-                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-5" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="5" type="" signature="QtSingleApplication(Display * dpy, int &amp; argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
-                <parameter left="Display *" right="" name="dpy" default=""/>
-                <parameter left="int &amp;" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-6" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="6" type="" signature="QtSingleApplication(Display * dpy, const QString &amp; appId, int argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
-                <parameter left="Display *" right="" name="dpy" default=""/>
-                <parameter left="const QString &amp;" right="" name="appId" default=""/>
-                <parameter left="int" right="" name="argc" default=""/>
-                <parameter left="char **" right="" name="argv" default=""/>
-                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
-                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleApplication::isRunning" href="qtsingleapplication.html#isRunning" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
-            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleApplication::id" href="qtsingleapplication.html#id" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
-            <function access="public" threadsafety="unspecified" status="commendable" name="setActivationWindow" fullname="QtSingleApplication::setActivationWindow" href="qtsingleapplication.html#setActivationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="setActivationWindow(QWidget * aw, bool activateOnMessage)">
-                <parameter left="QWidget *" right="" name="aw" default=""/>
-                <parameter left="bool" right="" name="activateOnMessage" default="true"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="activationWindow" fullname="QtSingleApplication::activationWindow" href="qtsingleapplication.html#activationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QWidget *" signature="activationWindow() const"/>
-            <function access="public" threadsafety="unspecified" status="obsolete" name="initialize" fullname="QtSingleApplication::initialize" href="qtsingleapplication-obsolete.html#initialize" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="initialize(bool dummy)">
-                <parameter left="bool" right="" name="dummy" default="true"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleApplication::sendMessage" href="qtsingleapplication.html#sendMessage" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
-                <parameter left="const QString &amp;" right="" name="message" default=""/>
-                <parameter left="int" right="" name="timeout" default="5000"/>
-            </function>
-            <function access="public" threadsafety="unspecified" status="commendable" name="activateWindow" fullname="QtSingleApplication::activateWindow" href="qtsingleapplication.html#activateWindow" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="void" signature="activateWindow()"/>
-            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleApplication::messageReceived" href="qtsingleapplication.html#messageReceived" location="qtsingleapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
-                <parameter left="const QString &amp;" right="" name="message" default=""/>
-            </function>
-        </class>
-        <page access="public" status="commendable" name="index.html" href="index.html" subtype="page" title="Single Application" fulltitle="Single Application" subtitle="" location="index.qdoc">
-            <contents name="description" title="Description" level="1"/>
-            <contents name="classes" title="Classes" level="1"/>
-            <contents name="examples" title="Examples" level="1"/>
-            <contents name="tested-platforms" title="Tested platforms" level="1"/>
-        </page>
-        <page access="public" status="commendable" name="qtsingleapplication-example-trivial.html" href="qtsingleapplication-example-trivial.html" subtype="page" title="A Trivial Example" fulltitle="A Trivial Example" subtitle="" location="trivial.qdoc"/>
-        <page access="public" status="commendable" name="qtsinglecoreapplication-example-console.html" href="qtsinglecoreapplication-example-console.html" subtype="page" title="A non-GUI example" fulltitle="A non-GUI example" subtitle="" location="console.qdoc"/>
-        <page access="public" status="commendable" name="qtsingleapplication-example-loader.html" href="qtsingleapplication-example-loader.html" subtype="page" title="Loading Documents" fulltitle="Loading Documents" subtitle="" location="loader.qdoc"/>
-    </namespace>
-</INDEX>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.qhp ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.qhp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.qhp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsingleapplication.qhp	1970-01-01 08:00:00.000000000 +0800
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<QtHelpProject version="1.0">
-    <namespace>com.nokia.qtsolutions.qtsingleapplication_head</namespace>
-    <virtualFolder>qdoc</virtualFolder>
-    <customFilter name="Qt Solutions: Single Application">
-        <filterAttribute>qt</filterAttribute>
-        <filterAttribute>solutions</filterAttribute>
-        <filterAttribute>qtsingleapplication</filterAttribute>
-    </customFilter>
-    <filterSection>
-        <filterAttribute>qt</filterAttribute>
-        <filterAttribute>solutions</filterAttribute>
-        <filterAttribute>qtsingleapplication</filterAttribute>
-        <toc>
-            <section ref="index.html" title="Qt Solutions: Single Application Documentation">
-                <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example"/>
-                <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example"/>
-                <section ref="qtsingleapplication-example-loader.html" title="Loading Documents"/>
-                <section ref="index.html" title="Single Application"/>
-            </section>
-        </toc>
-        <keywords>
-            <keyword name="A Trivial Example" id="A Trivial Example" ref="qtsingleapplication-example-trivial.html"/>
-            <keyword name="A non-GUI example" id="A non-GUI example" ref="qtsinglecoreapplication-example-console.html"/>
-            <keyword name="Loading Documents" id="Loading Documents" ref="qtsingleapplication-example-loader.html"/>
-            <keyword name="QtSingleApplication" id="QtSingleApplication" ref="qtsingleapplication.html"/>
-            <keyword name="activateWindow" id="QtSingleApplication::activateWindow" ref="qtsingleapplication.html#activateWindow"/>
-            <keyword name="activationWindow" id="QtSingleApplication::activationWindow" ref="qtsingleapplication.html#activationWindow"/>
-            <keyword name="id" id="QtSingleApplication::id" ref="qtsingleapplication.html#id"/>
-            <keyword name="initialize" id="QtSingleApplication::initialize" ref="qtsingleapplication-obsolete.html#initialize"/>
-            <keyword name="isRunning" id="QtSingleApplication::isRunning" ref="qtsingleapplication.html#isRunning"/>
-            <keyword name="messageReceived" id="QtSingleApplication::messageReceived" ref="qtsingleapplication.html#messageReceived"/>
-            <keyword name="sendMessage" id="QtSingleApplication::sendMessage" ref="qtsingleapplication.html#sendMessage"/>
-            <keyword name="setActivationWindow" id="QtSingleApplication::setActivationWindow" ref="qtsingleapplication.html#setActivationWindow"/>
-            <keyword name="QtSingleCoreApplication" id="QtSingleCoreApplication" ref="qtsinglecoreapplication.html"/>
-            <keyword name="id" id="QtSingleCoreApplication::id" ref="qtsinglecoreapplication.html#id"/>
-            <keyword name="isRunning" id="QtSingleCoreApplication::isRunning" ref="qtsinglecoreapplication.html#isRunning"/>
-            <keyword name="messageReceived" id="QtSingleCoreApplication::messageReceived" ref="qtsinglecoreapplication.html#messageReceived"/>
-            <keyword name="sendMessage" id="QtSingleCoreApplication::sendMessage" ref="qtsinglecoreapplication.html#sendMessage"/>
-            <keyword name="Single Application" id="Single Application" ref="index.html"/>
-        </keywords>
-        <files>
-            <file>qtsingleapplication.html</file>
-            <file>index.html</file>
-            <file>qtsingleapplication-example-trivial.html</file>
-            <file>qtsinglecoreapplication.html</file>
-            <file>qtsingleapplication-example-loader.html</file>
-            <file>qtsinglecoreapplication-example-console.html</file>
-            <file>classic.css</file>
-            <file>images/qt-logo.png</file>
-        </files>
-    </filterSection>
-</QtHelpProject>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,118 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- console.qdoc -->
-<head>
-  <title>A non-GUI example</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">A non-GUI example<br /><span class="subtitle"></span>
-</h1>
-<p>This example shows how to use the single-application functionality in a console application. It does not require the <tt>QtGui</tt> library at all.</p>
-<p>The only differences from the GUI application usage demonstrated in the other examples are:</p>
-<p>1) The <tt>.pro</tt> file should include <tt>qtsinglecoreapplication.pri</tt> instead of <tt>qtsingleapplication.pri</tt></p>
-<p>2) The class name is <tt>QtSingleCoreApplication</tt> instead of <tt>QtSingleApplication</tt>.</p>
-<p>3) No calls are made regarding window activation, for obvious reasons.</p>
-<p>console.pro:</p>
-<pre> TEMPLATE   = app
- CONFIG    += console
- SOURCES   += main.cpp
- include(../../src/qtsinglecoreapplication.pri)
- QT -= gui</pre>
-<p>main.cpp:</p>
-<pre><span class="comment"> /****************************************************************************
- **
- ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- ** Contact: http://www.qt-project.org/legal
- **
- ** This file is part of the Qt Solutions component.
- **
- ** You may use this file under the terms of the BSD license as follows:
- **
- ** &quot;Redistribution and use in source and binary forms, with or without
- ** modification, are permitted provided that the following conditions are
- ** met:
- **   * Redistributions of source code must retain the above copyright
- **     notice, this list of conditions and the following disclaimer.
- **   * Redistributions in binary form must reproduce the above copyright
- **     notice, this list of conditions and the following disclaimer in
- **     the documentation and/or other materials provided with the
- **     distribution.
- **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
- **     the names of its contributors may be used to endorse or promote
- **     products derived from this software without specific prior written
- **     permission.
- **
- ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
- **
- ****************************************************************************/</span>
-
- #include &quot;qtsinglecoreapplication.h&quot;
- #include &lt;QtCore/QDebug&gt;
-
- void report(const QString&amp; msg)
- {
-     qDebug(&quot;[%i] %s&quot;, (int)QCoreApplication::applicationPid(), qPrintable(msg));
- }
-
- class MainClass : public QObject
- {
-     Q_OBJECT
- public:
-     MainClass()
-         : QObject()
-         {}
-
- public slots:
-     void handleMessage(const QString&amp; message)
-         {
-             report( &quot;Message received: \&quot;&quot; + message + &quot;\&quot;&quot;);
-         }
- };
-
- int main(int argc, char **argv)
- {
-     report(&quot;Starting up&quot;);
-
-     QtSingleCoreApplication app(argc, argv);
-
-     if (app.isRunning()) {
-         QString msg(QString(&quot;Hi master, I am %1.&quot;).arg(QCoreApplication::applicationPid()));
-         bool sentok = app.sendMessage(msg, 2000);
-         QString rep(&quot;Another instance is running, so I will exit.&quot;);
-         rep += sentok ? &quot; Message sent ok.&quot; : &quot; Message sending failed; the other instance may be frozen.&quot;;
-         report(rep);
-         return 0;
-     } else {
-         report(&quot;No other instance is running; so I will.&quot;);
-         MainClass mainObj;
-         QObject::connect(&amp;app, SIGNAL(messageReceived(const QString&amp;)),
-                          &amp;mainObj, SLOT(handleMessage(const QString&amp;)));
-         return app.exec();
-     }
- }
-
- #include &quot;main.moc&quot;</pre>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,126 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- qtsinglecoreapplication.cpp -->
-<head>
-  <title>List of All Members for QtSingleCoreApplication</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">List of All Members for QtSingleCoreApplication</h1>
-<p>This is the complete list of members for <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>, including inherited members.</p>
-<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr><td width="45%" valign="top"><ul>
-<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
-<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp;, char ** )</div></li>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#event">event</a></b> ( QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exec">exec</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const : QString</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
-</ul></td><td valign="top"><ul>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
-<li><div class="fn"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
-<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
-</ul>
-</td></tr>
-</table></p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication.html ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication.html
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication.html	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/html/qtsinglecoreapplication.html	1970-01-01 08:00:00.000000000 +0800
@@ -1,98 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html
-    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<!-- qtsinglecoreapplication.cpp -->
-<head>
-  <title>QtSingleCoreApplication Class Reference</title>
-  <link href="classic.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
-<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
-<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
-</tr></table><h1 class="title">QtSingleCoreApplication Class Reference</h1>
-<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications. <a href="#details">More...</a></p>
-<pre> #include &lt;QtSingleCoreApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a>.</p>
-<ul>
-<li><a href="qtsinglecoreapplication-members.html">List of all members, including inherited members</a></li>
-</ul>
-<hr />
-<a name="public-functions"></a>
-<h2>Public Functions</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const</td></tr>
-<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> ()</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
-</ul>
-<hr />
-<a name="public-slots"></a>
-<h2>Public Slots</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
-</ul>
-<hr />
-<a name="signals"></a>
-<h2>Signals</h2>
-<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
-</table>
-<ul>
-<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
-<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
-</ul>
-<h3>Additional Inherited Members</h3>
-<ul>
-<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
-<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
-<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
-<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
-<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
-<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
-<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
-<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
-</ul>
-<a name="details"></a>
-<hr />
-<h2>Detailed Description</h2>
-<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications.</p>
-<p>This class is a variant of <a href="qtsingleapplication.html">QtSingleApplication</a> suited for use in console (non-GUI) applications. It is an extension of <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a> (instead of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>). It does not require the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
-<p>The API and usage is identical to <a href="qtsingleapplication.html">QtSingleApplication</a>, except that functions relating to the &quot;activation window&quot; are not present, for obvious reasons. Please refer to the <a href="qtsingleapplication.html">QtSingleApplication</a> documentation for explanation of the usage.</p>
-<p>A QtSingleCoreApplication instance can communicate to a <a href="qtsingleapplication.html">QtSingleApplication</a> instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.</p>
-<p>See also <a href="qtsingleapplication.html">QtSingleApplication</a>.</p>
-<hr />
-<h2>Member Function Documentation</h2>
-<h3 class="fn"><a name="QtSingleCoreApplication"></a>QtSingleCoreApplication::QtSingleCoreApplication ( int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
-<h3 class="fn"><a name="QtSingleCoreApplication-2"></a>QtSingleCoreApplication::QtSingleCoreApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
-<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
-<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleCoreApplication::id () const</h3>
-<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
-<h3 class="fn"><a name="isRunning"></a>bool QtSingleCoreApplication::isRunning ()</h3>
-<p>Returns true if another instance of this application is running; otherwise false.</p>
-<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
-<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
-<h3 class="fn"><a name="messageReceived"></a>void QtSingleCoreApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
-<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
-<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
-<h3 class="fn"><a name="sendMessage"></a>bool QtSingleCoreApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
-<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object in the running instance will emit the <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
-<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
-<p>See also <a href="qtsinglecoreapplication.html#isRunning">isRunning</a>() and <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>().</p>
-<p /><address><hr /><div align="center">
-<table width="100%" cellspacing="0" border="0"><tr class="address">
-<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
-<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
-<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
-</tr></table></div></address></body>
-</html>
Binary files /tmp/tmp9gdptr6t/pDqV9ROnFH/ukui-clipboard-1.0.0.0/qtsingleapplication/doc/images/qt-logo.png and /tmp/tmp9gdptr6t/g1CnYQZ71I/ukui-clipboard-2.0.0.0/qtsingleapplication/doc/images/qt-logo.png differ
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/doc/index.qdoc ukui-clipboard-2.0.0.0/qtsingleapplication/doc/index.qdoc
--- ukui-clipboard-1.0.0.0/qtsingleapplication/doc/index.qdoc	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/doc/index.qdoc	1970-01-01 08:00:00.000000000 +0800
@@ -1,50 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-/*!
-	\page index.html
-	\title Single Application
-
-    	\section1 Description
-	
-			The QtSingleApplication component provides support
-			for applications that can be only started once per user.
-		
-
-	
-			For some applications it is useful or even critical that they are started
-			only once by any user. Future attempts to start the application should
-			activate any already running instance, and possibly perform requested
-			actions, e.g. loading a file, in that instance.
-
-			The QtSingleApplication class provides an interface to detect a running
-			instance, and to send command strings to that instance.
-	                For console (non-GUI) applications, the QtSingleCoreApplication variant is provided, which avoids dependency on QtGui.
-
-		
-
-    	
-		\section1 Classes
-	    \list
-	 \i  QtSingleApplication \i  QtSingleCoreApplication\endlist
-	
-		\section1 Examples
-	    \list
-	 \i  \link qtsingleapplication-example-trivial.html A Trivial Example \endlink  \i  \link qtsingleapplication-example-loader.html Loading Documents \endlink  \i  \link qtsinglecoreapplication-example-console.html A Non-GUI Example \endlink \endlist
-	
-	
-
-    	
-
-    	
-    		\section1 Tested platforms
-		\list
-		\i Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005
-		    \i Qt 4.4, 4.5 / Linux / gcc
-		    \i Qt 4.4, 4.5 / MacOS X 10.5 / gcc
-		    \endlist
-
-    	
-
-	
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/console.pro ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/console.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/console.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/console.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,5 +0,0 @@
-TEMPLATE   = app
-CONFIG    += console
-SOURCES   += main.cpp
-include(../../src/qtsinglecoreapplication.pri)
-QT -= gui
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/console.qdoc ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/console.qdoc
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/console.qdoc	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/console.qdoc	1970-01-01 08:00:00.000000000 +0800
@@ -1,28 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-/*! \page qtsinglecoreapplication-example-console.html
-    \title A non-GUI example
-
-    This example shows how to use the single-application functionality
-    in a console application. It does not require the \c QtGui library
-    at all.
-
-    The only differences from the GUI application usage demonstrated
-    in the other examples are:
-
-    1) The \c.pro file should include \c qtsinglecoreapplication.pri
-       instead of \c qtsingleapplication.pri
-
-    2) The class name is \c QtSingleCoreApplication instead of \c
-       QtSingleApplication.
-
-    3) No calls are made regarding window activation, for obvious reasons.
-
-    console.pro:
-    \quotefile console/console.pro
-
-    main.cpp:
-    \quotefile console/main.cpp
-
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/main.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/main.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/console/main.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/console/main.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,52 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-
-#include "qtsinglecoreapplication.h"
-#include <QDebug>
-
-
-void report(const QString& msg)
-{
-    qDebug("[%i] %s", (int)QCoreApplication::applicationPid(), qPrintable(msg));
-}
-
-class MainClass : public QObject
-{
-    Q_OBJECT
-public:
-    MainClass()
-        : QObject()
-        {}
-
-public slots:
-    void handleMessage(const QString& message)
-        {
-            report( "Message received: \"" + message + "\"");
-        }
-};
-
-int main(int argc, char **argv)
-{
-    report("Starting up");
-
-    QtSingleCoreApplication app(argc, argv);
-
-    if (app.isRunning()) {
-        QString msg(QString("Hi master, I am %1.").arg(QCoreApplication::applicationPid()));
-        bool sentok = app.sendMessage(msg, 2000);
-        QString rep("Another instance is running, so I will exit.");
-        rep += sentok ? " Message sent ok." : " Message sending failed; the other instance may be frozen.";
-        report(rep);
-        return 0;
-    } else {
-        report("No other instance is running; so I will.");
-        MainClass mainObj;
-        QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
-                         &mainObj, SLOT(handleMessage(const QString&)));
-        return app.exec();
-    }
-}
-
-
-#include "main.moc"
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/examples.pro ukui-clipboard-2.0.0.0/qtsingleapplication/examples/examples.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/examples.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/examples.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,4 +0,0 @@
-TEMPLATE = subdirs
-SUBDIRS	 = trivial \
-	   loader  \
-           console
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/file1.qsl ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/file1.qsl
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/file1.qsl	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/file1.qsl	1970-01-01 08:00:00.000000000 +0800
@@ -1 +0,0 @@
-File 1
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/file2.qsl ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/file2.qsl
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/file2.qsl	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/file2.qsl	1970-01-01 08:00:00.000000000 +0800
@@ -1 +0,0 @@
-File 2
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/loader.pro ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/loader.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/loader.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/loader.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,6 +0,0 @@
-greaterThan(QT_MAJOR_VERSION, 4): QT += printsupport
-TEMPLATE	= app
-
-include(../../src/qtsingleapplication.pri)
-
-SOURCES		+= main.cpp
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/loader.qdoc ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/loader.qdoc
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/loader.qdoc	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/loader.qdoc	1970-01-01 08:00:00.000000000 +0800
@@ -1,44 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-/*! \page qtsingleapplication-example-loader.html
-    \title Loading Documents
-
-    The application in this example loads or prints the documents 
-    passed as commandline parameters to further instances of this
-    application.
-
-    \quotefromfile loader/main.cpp
-    \printuntil };
-    The user interface in this application is a QMainWindow subclass
-    with a QMdiArea as the central widget. It implements a slot
-    \c handleMessage() that will be connected to the messageReceived()
-    signal of the QtSingleApplication class.
-
-    \printuntil }
-    The MainWindow constructor creates a minimal user interface.
-
-    \printto case Print:
-    The handleMessage() slot interprets the message passed in as a
-    filename that can be prepended with \e /print to indicate that
-    the file should just be printed rather than loaded.
-
-    \printto #include
-    Loading the file will also activate the window.
-
-    \printto mw
-    The \c main entry point function creates a QtSingleApplication
-    object, and creates a message to send to a running instance
-    of the application. If the message was sent successfully the
-    process exits immediately.
-
-    \printuntil }
-    If the message could not be sent the application starts up.  Note
-    that \c false is passed to the call to setActivationWindow() to
-    prevent automatic activation for every message received, e.g. when
-    the application should just print a file. Instead, the message
-    handling function determines whether activation is requested, and
-    signals that by emitting the needToShow() signal. This is then
-    simply connected directly to QtSingleApplication's
-    activateWindow() slot.
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/main.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/main.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/loader/main.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/loader/main.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,115 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#include <qtsingleapplication.h>
-#include <QFile>
-#include <QMainWindow>
-#include <QPrinter>
-#include <QPainter>
-#include <QTextEdit>
-#include <QMdiArea>
-#include <QTextStream>
-
-class MainWindow : public QMainWindow
-{
-    Q_OBJECT
-public:
-    MainWindow();
-
-public slots:
-    void handleMessage(const QString& message);
-
-signals:
-    void needToShow();
-
-private:
-    QMdiArea *workspace;
-};
-
-MainWindow::MainWindow()
-{
-    workspace = new QMdiArea(this);
-
-    setCentralWidget(workspace);
-}
-
-void MainWindow::handleMessage(const QString& message)
-{
-    enum Action {
-	Nothing,
-	Open,
-	Print
-    } action;
-
-    action = Nothing;
-    QString filename = message;
-    if (message.toLower().startsWith("/print ")) {
-	filename = filename.mid(7);
-	action = Print;
-    } else if (!message.isEmpty()) {
-	action = Open;
-    }
-    if (action == Nothing) {
-        emit needToShow();
-	return;
-    }
-
-    QFile file(filename);
-    QString contents;
-    if (file.open(QIODevice::ReadOnly))
-        contents = file.readAll();
-    else
-        contents = "[[Error: Could not load file " + filename + "]]";
-
-    QTextEdit *view = new QTextEdit;
-    view->setPlainText(contents);
-
-    switch(action) {
-    case Print:
-	{
-	    QPrinter printer;
-            view->print(&printer);
-            delete view;
-        }
-	break;
-
-    case Open:
-	{
-	    workspace->addSubWindow(view);
-	    view->setWindowTitle(message);
-	    view->show();
-            emit needToShow();
-	}
-	break;
-    default:
-	break;
-    };
-}
-
-#include "main.moc"
-
-int main(int argc, char **argv)
-{
-    QtSingleApplication instance("File loader QtSingleApplication example", argc, argv);
-    QString message;
-    for (int a = 1; a < argc; ++a) {
-	message += argv[a];
-	if (a < argc-1)
-	    message += " ";
-    }
-
-    if (instance.sendMessage(message))
-	return 0;
-
-    MainWindow mw;
-    mw.handleMessage(message);
-    mw.show();
-
-    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
-		     &mw, SLOT(handleMessage(const QString&)));
-
-    instance.setActivationWindow(&mw, false);
-    QObject::connect(&mw, SIGNAL(needToShow()), &instance, SLOT(activateWindow()));
-
-    return instance.exec();
-}
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/main.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/main.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/main.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/main.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,41 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#include <qtsingleapplication.h>
-#include <QTextEdit>
-
-class TextEdit : public QTextEdit
-{
-    Q_OBJECT
-public:
-    TextEdit(QWidget *parent = 0)
-        : QTextEdit(parent)
-    {}
-public slots:
-    void append(const QString &str)
-    {
-        QTextEdit::append(str);
-    }
-};
-
-#include "main.moc"
-
-
-
-int main(int argc, char **argv)
-{
-    QtSingleApplication instance(argc, argv);
-    if (instance.sendMessage("Wake up!"))
-	return 0;
-
-    TextEdit logview;
-    logview.setReadOnly(true);
-    logview.show();
-
-    instance.setActivationWindow(&logview);
-
-    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
-		     &logview, SLOT(append(const QString&)));
-
-    return instance.exec();
-}
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/trivial.pro ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/trivial.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/trivial.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/trivial.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,5 +0,0 @@
-TEMPLATE	= app
-
-include(../../src/qtsingleapplication.pri)
-
-SOURCES		+= main.cpp
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/trivial.qdoc ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/trivial.qdoc
--- ukui-clipboard-1.0.0.0/qtsingleapplication/examples/trivial/trivial.qdoc	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/examples/trivial/trivial.qdoc	1970-01-01 08:00:00.000000000 +0800
@@ -1,39 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-/*! \page qtsingleapplication-example-trivial.html
-    \title A Trivial Example
-
-    The application in this example has a log-view that displays
-    messages sent by further instances of the same application.
-
-    The example demonstrates the use of the QtSingleApplication
-    class to detect and communicate with a running instance of
-    the application using the sendMessage() API. The messageReceived()
-    signal is used to display received messages in a QTextEdit log.
-
-    \quotefromfile trivial/main.cpp
-    \printuntil instance
-    The example has only the \c main entry point function.
-    A QtSingleApplication object is created immediately.
-
-    \printuntil return 
-    If another instance of this application is already running,
-    sendMessage() will succeed, and this instance just exits
-    immediately.
-
-    \printuntil show()
-    Otherwise the instance continues as normal and creates the
-    user interface.
-
-    \printuntil return instance.exec();
-    The \c logview object is also set as the application's activation
-    window. Every time a message is received, the window will be raised
-    and activated automatically.
-
-    The messageReceived() signal is also connected to the QTextEdit's
-    append() slot. Every message received from further instances of
-    this application will be displayed in the log.
-
-    Finally the event loop is entered.
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/qtsingleapplication.pro ukui-clipboard-2.0.0.0/qtsingleapplication/qtsingleapplication.pro
--- ukui-clipboard-1.0.0.0/qtsingleapplication/qtsingleapplication.pro	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/qtsingleapplication.pro	1970-01-01 08:00:00.000000000 +0800
@@ -1,5 +0,0 @@
-TEMPLATE=subdirs
-CONFIG += ordered
-include(common.pri)
-qtsingleapplication-uselib:SUBDIRS=buildlib
-SUBDIRS+=examples
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/QtLockedFile ukui-clipboard-2.0.0.0/qtsingleapplication/src/QtLockedFile
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/QtLockedFile	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/QtLockedFile	1970-01-01 08:00:00.000000000 +0800
@@ -1 +0,0 @@
-#include "qtlockedfile.h"
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/QtSingleApplication ukui-clipboard-2.0.0.0/qtsingleapplication/src/QtSingleApplication
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/QtSingleApplication	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/QtSingleApplication	1970-01-01 08:00:00.000000000 +0800
@@ -1 +0,0 @@
-#include "qtsingleapplication.h"
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlocalpeer.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlocalpeer.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlocalpeer.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlocalpeer.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,177 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-
-#include "qtlocalpeer.h"
-#include <QCoreApplication>
-#include <QDataStream>
-#include <QRegularExpression>
-#include <QTime>
-
-#if defined(Q_OS_WIN)
-#include <QLibrary>
-#include <qt_windows.h>
-typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
-static PProcessIdToSessionId pProcessIdToSessionId = 0;
-#endif
-#if defined(Q_OS_UNIX)
-#include <sys/types.h>
-#include <time.h>
-#include <unistd.h>
-#endif
-
-namespace QtLP_Private {
-#include "qtlockedfile.cpp"
-#if defined(Q_OS_WIN)
-#include "qtlockedfile_win.cpp"
-#else
-#include "qtlockedfile_unix.cpp"
-#endif
-}
-
-const char* QtLocalPeer::ack = "ack";
-
-QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
-    : QObject(parent), id(appId)
-{
-    QString prefix = id;
-    if (id.isEmpty()) {
-        id = QCoreApplication::applicationFilePath();
-#if defined(Q_OS_WIN)
-        id = id.toLower();
-#endif
-        prefix = id.section(QLatin1Char('/'), -1);
-    }
-    prefix.remove(QRegularExpression("[^a-zA-Z]"));
-    prefix.truncate(6);
-
-    QByteArray idc = id.toUtf8();
-    quint16 idNum = qChecksum(idc.constData(), idc.size());
-    socketName = QLatin1String("qtsingleapp-") + prefix
-                 + QLatin1Char('-') + QString::number(idNum, 16);
-
-#if defined(Q_OS_WIN)
-    if (!pProcessIdToSessionId) {
-        QLibrary lib("kernel32");
-        pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
-    }
-    if (pProcessIdToSessionId) {
-        DWORD sessionId = 0;
-        pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
-        socketName += QLatin1Char('-') + QString::number(sessionId, 16);
-    }
-#else
-    socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
-#endif
-
-    server = new QLocalServer(this);
-    QString lockName = QDir(QDir::tempPath()).absolutePath()
-                       + QLatin1Char('/') + socketName
-                       + QLatin1String("-lockfile");
-    lockFile.setFileName(lockName);
-    lockFile.open(QIODevice::ReadWrite);
-}
-
-
-
-bool QtLocalPeer::isClient()
-{
-    if (lockFile.isLocked())
-        return false;
-
-    if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
-        return true;
-
-    bool res = server->listen(socketName);
-#if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
-    // ### Workaround
-    if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
-        QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
-        res = server->listen(socketName);
-    }
-#endif
-    if (!res)
-        qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
-    QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
-    return false;
-}
-
-
-bool QtLocalPeer::sendMessage(const QString &message, int timeout)
-{
-    if (!isClient())
-        return false;
-
-    QLocalSocket socket;
-    bool connOk = false;
-    for(int i = 0; i < 2; i++) {
-        // Try twice, in case the other instance is just starting up
-        socket.connectToServer(socketName);
-        connOk = socket.waitForConnected(timeout/2);
-        if (connOk || i)
-            break;
-        int ms = 250;
-#if defined(Q_OS_WIN)
-        Sleep(DWORD(ms));
-#else
-        struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
-        nanosleep(&ts, NULL);
-#endif
-    }
-    if (!connOk)
-        return false;
-
-    QByteArray uMsg(message.toUtf8());
-    QDataStream ds(&socket);
-    ds.writeBytes(uMsg.constData(), uMsg.size());
-    bool res = socket.waitForBytesWritten(timeout);
-    if (res) {
-        res &= socket.waitForReadyRead(timeout);   // wait for ack
-        if (res)
-            res &= (socket.read(qstrlen(ack)) == ack);
-    }
-    return res;
-}
-
-
-void QtLocalPeer::receiveConnection()
-{
-    QLocalSocket* socket = server->nextPendingConnection();
-    if (!socket)
-        return;
-
-    while (true) {
-        if (socket->state() == QLocalSocket::UnconnectedState) {
-            qWarning("QtLocalPeer: Peer disconnected");
-            delete socket;
-            return;
-        }
-        if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
-            break;
-        socket->waitForReadyRead();
-    }
-
-    QDataStream ds(socket);
-    QByteArray uMsg;
-    quint32 remaining;
-    ds >> remaining;
-    uMsg.resize(remaining);
-    int got = 0;
-    char* uMsgBuf = uMsg.data();
-    do {
-        got = ds.readRawData(uMsgBuf, remaining);
-        remaining -= got;
-        uMsgBuf += got;
-    } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
-    if (got < 0) {
-        qWarning("QtLocalPeer: Message reception failed %s", socket->errorString().toLatin1().constData());
-        delete socket;
-        return;
-    }
-    QString message(QString::fromUtf8(uMsg));
-    socket->write(ack, qstrlen(ack));
-    socket->waitForBytesWritten(1000);
-    socket->waitForDisconnected(1000); // make sure client reads ack
-    delete socket;
-    emit messageReceived(message); //### (might take a long time to return)
-}
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlocalpeer.h ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlocalpeer.h
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlocalpeer.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlocalpeer.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,40 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#ifndef QTLOCALPEER_H
-#define QTLOCALPEER_H
-
-#include <QLocalServer>
-#include <QLocalSocket>
-#include <QDir>
-
-#include "qtlockedfile.h"
-
-class QtLocalPeer : public QObject
-{
-    Q_OBJECT
-
-public:
-    QtLocalPeer(QObject *parent = 0, const QString &appId = QString());
-    bool isClient();
-    bool sendMessage(const QString &message, int timeout);
-    QString applicationId() const
-        { return id; }
-
-Q_SIGNALS:
-    void messageReceived(const QString &message);
-
-protected Q_SLOTS:
-    void receiveConnection();
-
-protected:
-    QString id;
-    QString socketName;
-    QLocalServer* server;
-    QtLP_Private::QtLockedFile lockFile;
-
-private:
-    static const char* ack;
-};
-
-#endif // QTLOCALPEER_H
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,156 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#include "qtlockedfile.h"
-
-/*!
-    \class QtLockedFile
-
-    \brief The QtLockedFile class extends QFile with advisory locking
-    functions.
-
-    A file may be locked in read or write mode. Multiple instances of
-    \e QtLockedFile, created in multiple processes running on the same
-    machine, may have a file locked in read mode. Exactly one instance
-    may have it locked in write mode. A read and a write lock cannot
-    exist simultaneously on the same file.
-
-    The file locks are advisory. This means that nothing prevents
-    another process from manipulating a locked file using QFile or
-    file system functions offered by the OS. Serialization is only
-    guaranteed if all processes that access the file use
-    QLockedFile. Also, while holding a lock on a file, a process
-    must not open the same file again (through any API), or locks
-    can be unexpectedly lost.
-
-    The lock provided by an instance of \e QtLockedFile is released
-    whenever the program terminates. This is true even when the
-    program crashes and no destructors are called.
-*/
-
-/*! \enum QtLockedFile::LockMode
-
-    This enum describes the available lock modes.
-
-    \value ReadLock A read lock.
-    \value WriteLock A write lock.
-    \value NoLock Neither a read lock nor a write lock.
-*/
-
-/*!
-    Constructs an unlocked \e QtLockedFile object. This constructor
-    behaves in the same way as \e QFile::QFile().
-
-    \sa QFile::QFile()
-*/
-QtLockedFile::QtLockedFile()
-    : QFile()
-{
-#ifdef Q_OS_WIN
-    wmutex = 0;
-    rmutex = 0;
-#endif
-    m_lock_mode = NoLock;
-}
-
-/*!
-    Constructs an unlocked QtLockedFile object with file \a name. This
-    constructor behaves in the same way as \e QFile::QFile(const
-    QString&).
-
-    \sa QFile::QFile()
-*/
-QtLockedFile::QtLockedFile(const QString &name)
-    : QFile(name)
-{
-#ifdef Q_OS_WIN
-    wmutex = 0;
-    rmutex = 0;
-#endif
-    m_lock_mode = NoLock;
-}
-
-/*!
-  Opens the file in OpenMode \a mode.
-
-  This is identical to QFile::open(), with the one exception that the
-  Truncate mode flag is disallowed. Truncation would conflict with the
-  advisory file locking, since the file would be modified before the
-  write lock is obtained. If truncation is required, use resize(0)
-  after obtaining the write lock.
-
-  Returns true if successful; otherwise false.
-
-  \sa QFile::open(), QFile::resize()
-*/
-bool QtLockedFile::open(OpenMode mode)
-{
-    if (mode & QIODevice::Truncate) {
-        qWarning("QtLockedFile::open(): Truncate mode not allowed.");
-        return false;
-    }
-    return QFile::open(mode);
-}
-
-/*!
-    Returns \e true if this object has a in read or write lock;
-    otherwise returns \e false.
-
-    \sa lockMode()
-*/
-bool QtLockedFile::isLocked() const
-{
-    return m_lock_mode != NoLock;
-}
-
-/*!
-    Returns the type of lock currently held by this object, or \e
-    QtLockedFile::NoLock.
-
-    \sa isLocked()
-*/
-QtLockedFile::LockMode QtLockedFile::lockMode() const
-{
-    return m_lock_mode;
-}
-
-/*!
-    \fn bool QtLockedFile::lock(LockMode mode, bool block = true)
-
-    Obtains a lock of type \a mode. The file must be opened before it
-    can be locked.
-
-    If \a block is true, this function will block until the lock is
-    aquired. If \a block is false, this function returns \e false
-    immediately if the lock cannot be aquired.
-
-    If this object already has a lock of type \a mode, this function
-    returns \e true immediately. If this object has a lock of a
-    different type than \a mode, the lock is first released and then a
-    new lock is obtained.
-
-    This function returns \e true if, after it executes, the file is
-    locked by this object, and \e false otherwise.
-
-    \sa unlock(), isLocked(), lockMode()
-*/
-
-/*!
-    \fn bool QtLockedFile::unlock()
-
-    Releases a lock.
-
-    If the object has no lock, this function returns immediately.
-
-    This function returns \e true if, after it executes, the file is
-    not locked by this object, and \e false otherwise.
-
-    \sa lock(), isLocked(), lockMode()
-*/
-
-/*!
-    \fn QtLockedFile::~QtLockedFile()
-
-    Destroys the \e QtLockedFile object. If any locks were held, they
-    are released.
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile.h ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile.h
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,60 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#ifndef QTLOCKEDFILE_H
-#define QTLOCKEDFILE_H
-
-#include <QFile>
-#ifdef Q_OS_WIN
-#include <QVector>
-#endif
-
-#if defined(Q_OS_WIN)
-#  if !defined(QT_QTLOCKEDFILE_EXPORT) && !defined(QT_QTLOCKEDFILE_IMPORT)
-#    define QT_QTLOCKEDFILE_EXPORT
-#  elif defined(QT_QTLOCKEDFILE_IMPORT)
-#    if defined(QT_QTLOCKEDFILE_EXPORT)
-#      undef QT_QTLOCKEDFILE_EXPORT
-#    endif
-#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllimport)
-#  elif defined(QT_QTLOCKEDFILE_EXPORT)
-#    undef QT_QTLOCKEDFILE_EXPORT
-#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllexport)
-#  endif
-#else
-#  define QT_QTLOCKEDFILE_EXPORT
-#endif
-
-namespace QtLP_Private {
-
-class QT_QTLOCKEDFILE_EXPORT QtLockedFile : public QFile
-{
-public:
-    enum LockMode { NoLock = 0, ReadLock, WriteLock };
-
-    QtLockedFile();
-    QtLockedFile(const QString &name);
-    ~QtLockedFile();
-
-    bool open(OpenMode mode);
-
-    bool lock(LockMode mode, bool block = true);
-    bool unlock();
-    bool isLocked() const;
-    LockMode lockMode() const;
-
-private:
-#ifdef Q_OS_WIN
-    Qt::HANDLE wmutex;
-    Qt::HANDLE rmutex;
-    QVector<Qt::HANDLE> rmutexes;
-    QString mutexname;
-
-    Qt::HANDLE getMutexHandle(int idx, bool doCreate);
-    bool waitMutex(Qt::HANDLE mutex, bool doBlock);
-
-#endif
-    LockMode m_lock_mode;
-};
-}
-#endif
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile_unix.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile_unix.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile_unix.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile_unix.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,78 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#include <string.h>
-#include <errno.h>
-#include <unistd.h>
-#include <fcntl.h>
-
-#include "qtlockedfile.h"
-
-bool QtLockedFile::lock(LockMode mode, bool block)
-{
-    if (!isOpen()) {
-        qWarning("QtLockedFile::lock(): file is not opened");
-        return false;
-    }
- 
-    if (mode == NoLock)
-        return unlock();
-           
-    if (mode == m_lock_mode)
-        return true;
-
-    if (m_lock_mode != NoLock)
-        unlock();
-
-    struct flock fl;
-    fl.l_whence = SEEK_SET;
-    fl.l_start = 0;
-    fl.l_len = 0;
-    fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK;
-    int cmd = block ? F_SETLKW : F_SETLK;
-    int ret = fcntl(handle(), cmd, &fl);
-    
-    if (ret == -1) {
-        if (errno != EINTR && errno != EAGAIN)
-            qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
-        return false;
-    }
-
-    
-    m_lock_mode = mode;
-    return true;
-}
-
-
-bool QtLockedFile::unlock()
-{
-    if (!isOpen()) {
-        qWarning("QtLockedFile::unlock(): file is not opened");
-        return false;
-    }
-
-    if (!isLocked())
-        return true;
-
-    struct flock fl;
-    fl.l_whence = SEEK_SET;
-    fl.l_start = 0;
-    fl.l_len = 0;
-    fl.l_type = F_UNLCK;
-    int ret = fcntl(handle(), F_SETLKW, &fl);
-    
-    if (ret == -1) {
-        qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
-        return false;
-    }
-    
-    m_lock_mode = NoLock;
-    return true;
-}
-
-QtLockedFile::~QtLockedFile()
-{
-    if (isOpen())
-        unlock();
-}
-
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile_win.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile_win.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtlockedfile_win.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtlockedfile_win.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,174 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#include "qtlockedfile.h"
-#include <qt_windows.h>
-#include <QFileInfo>
-
-#define MUTEX_PREFIX "QtLockedFile mutex "
-// Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS
-#define MAX_READERS MAXIMUM_WAIT_OBJECTS
-
-#if QT_VERSION >= 0x050000
-#define QT_WA(unicode, ansi) unicode
-#endif
-
-Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate)
-{
-    if (mutexname.isEmpty()) {
-        QFileInfo fi(*this);
-        mutexname = QString::fromLatin1(MUTEX_PREFIX)
-                    + fi.absoluteFilePath().toLower();
-    }
-    QString mname(mutexname);
-    if (idx >= 0)
-        mname += QString::number(idx);
-
-    Qt::HANDLE mutex;
-    if (doCreate) {
-        QT_WA( { mutex = CreateMutexW(NULL, FALSE, (TCHAR*)mname.utf16()); },
-               { mutex = CreateMutexA(NULL, FALSE, mname.toLocal8Bit().constData()); } );
-        if (!mutex) {
-            qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
-            return 0;
-        }
-    }
-    else {
-        QT_WA( { mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, (TCHAR*)mname.utf16()); },
-               { mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, mname.toLocal8Bit().constData()); } );
-        if (!mutex) {
-            if (GetLastError() != ERROR_FILE_NOT_FOUND)
-                qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
-            return 0;
-        }
-    }
-    return mutex;
-}
-
-bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock)
-{
-    Q_ASSERT(mutex);
-    DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0);
-    switch (res) {
-    case WAIT_OBJECT_0:
-    case WAIT_ABANDONED:
-        return true;
-        break;
-    case WAIT_TIMEOUT:
-        break;
-    default:
-        qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
-    }
-    return false;
-}
-
-
-
-bool QtLockedFile::lock(LockMode mode, bool block)
-{
-    if (!isOpen()) {
-        qWarning("QtLockedFile::lock(): file is not opened");
-        return false;
-    }
-
-    if (mode == NoLock)
-        return unlock();
-
-    if (mode == m_lock_mode)
-        return true;
-
-    if (m_lock_mode != NoLock)
-        unlock();
-
-    if (!wmutex && !(wmutex = getMutexHandle(-1, true)))
-        return false;
-
-    if (!waitMutex(wmutex, block))
-        return false;
-
-    if (mode == ReadLock) {
-        int idx = 0;
-        for (; idx < MAX_READERS; idx++) {
-            rmutex = getMutexHandle(idx, false);
-            if (!rmutex || waitMutex(rmutex, false))
-                break;
-            CloseHandle(rmutex);
-        }
-        bool ok = true;
-        if (idx >= MAX_READERS) {
-            qWarning("QtLockedFile::lock(): too many readers");
-            rmutex = 0;
-            ok = false;
-        }
-        else if (!rmutex) {
-            rmutex = getMutexHandle(idx, true);
-            if (!rmutex || !waitMutex(rmutex, false))
-                ok = false;
-        }
-        if (!ok && rmutex) {
-            CloseHandle(rmutex);
-            rmutex = 0;
-        }
-        ReleaseMutex(wmutex);
-        if (!ok)
-            return false;
-    }
-    else {
-        Q_ASSERT(rmutexes.isEmpty());
-        for (int i = 0; i < MAX_READERS; i++) {
-            Qt::HANDLE mutex = getMutexHandle(i, false);
-            if (mutex)
-                rmutexes.append(mutex);
-        }
-        if (rmutexes.size()) {
-            DWORD res = WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(),
-                                               TRUE, block ? INFINITE : 0);
-            if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) {
-                if (res != WAIT_TIMEOUT)
-                    qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed");
-                m_lock_mode = WriteLock;  // trick unlock() to clean up - semiyucky
-                unlock();
-                return false;
-            }
-        }
-    }
-
-    m_lock_mode = mode;
-    return true;
-}
-
-bool QtLockedFile::unlock()
-{
-    if (!isOpen()) {
-        qWarning("QtLockedFile::unlock(): file is not opened");
-        return false;
-    }
-
-    if (!isLocked())
-        return true;
-
-    if (m_lock_mode == ReadLock) {
-        ReleaseMutex(rmutex);
-        CloseHandle(rmutex);
-        rmutex = 0;
-    }
-    else {
-        foreach(Qt::HANDLE mutex, rmutexes) {
-            ReleaseMutex(mutex);
-            CloseHandle(mutex);
-        }
-        rmutexes.clear();
-        ReleaseMutex(wmutex);
-    }
-
-    m_lock_mode = QtLockedFile::NoLock;
-    return true;
-}
-
-QtLockedFile::~QtLockedFile()
-{
-    if (isOpen())
-        unlock();
-    if (wmutex)
-        CloseHandle(wmutex);
-}
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,310 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-
-#include "qtsingleapplication.h"
-#include "qtlocalpeer.h"
-#include <QWidget>
-
-
-/*!
-    \class QtSingleApplication qtsingleapplication.h
-    \brief The QtSingleApplication class provides an API to detect and
-    communicate with running instances of an application.
-
-    This class allows you to create applications where only one
-    instance should be running at a time. I.e., if the user tries to
-    launch another instance, the already running instance will be
-    activated instead. Another usecase is a client-server system,
-    where the first started instance will assume the role of server,
-    and the later instances will act as clients of that server.
-
-    By default, the full path of the executable file is used to
-    determine whether two processes are instances of the same
-    application. You can also provide an explicit identifier string
-    that will be compared instead.
-
-    The application should create the QtSingleApplication object early
-    in the startup phase, and call isRunning() to find out if another
-    instance of this application is already running. If isRunning()
-    returns false, it means that no other instance is running, and
-    this instance has assumed the role as the running instance. In
-    this case, the application should continue with the initialization
-    of the application user interface before entering the event loop
-    with exec(), as normal.
-
-    The messageReceived() signal will be emitted when the running
-    application receives messages from another instance of the same
-    application. When a message is received it might be helpful to the
-    user to raise the application so that it becomes visible. To
-    facilitate this, QtSingleApplication provides the
-    setActivationWindow() function and the activateWindow() slot.
-
-    If isRunning() returns true, another instance is already
-    running. It may be alerted to the fact that another instance has
-    started by using the sendMessage() function. Also data such as
-    startup parameters (e.g. the name of the file the user wanted this
-    new instance to open) can be passed to the running instance with
-    this function. Then, the application should terminate (or enter
-    client mode).
-
-    If isRunning() returns true, but sendMessage() fails, that is an
-    indication that the running instance is frozen.
-
-    Here's an example that shows how to convert an existing
-    application to use QtSingleApplication. It is very simple and does
-    not make use of all QtSingleApplication's functionality (see the
-    examples for that).
-
-    \code
-    // Original
-    int main(int argc, char **argv)
-    {
-        QApplication app(argc, argv);
-
-        MyMainWidget mmw;
-        mmw.show();
-        return app.exec();
-    }
-
-    // Single instance
-    int main(int argc, char **argv)
-    {
-        QtSingleApplication app(argc, argv);
-
-        if (app.isRunning())
-            return !app.sendMessage(someDataString);
-
-        MyMainWidget mmw;
-        app.setActivationWindow(&mmw);
-        mmw.show();
-        return app.exec();
-    }
-    \endcode
-
-    Once this QtSingleApplication instance is destroyed (normally when
-    the process exits or crashes), when the user next attempts to run the
-    application this instance will not, of course, be encountered. The
-    next instance to call isRunning() or sendMessage() will assume the
-    role as the new running instance.
-
-    For console (non-GUI) applications, QtSingleCoreApplication may be
-    used instead of this class, to avoid the dependency on the QtGui
-    library.
-
-    \sa QtSingleCoreApplication
-*/
-
-
-void QtSingleApplication::sysInit(const QString &appId)
-{
-    actWin = 0;
-    peer = new QtLocalPeer(this, appId);
-    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-}
-
-
-/*!
-    Creates a QtSingleApplication object. The application identifier
-    will be QCoreApplication::applicationFilePath(). \a argc, \a
-    argv, and \a GUIenabled are passed on to the QAppliation constructor.
-
-    If you are creating a console application (i.e. setting \a
-    GUIenabled to false), you may consider using
-    QtSingleCoreApplication instead.
-*/
-
-QtSingleApplication::QtSingleApplication(int &argc, char **argv, bool GUIenabled)
-    : QApplication(argc, argv, GUIenabled)
-{
-    sysInit();
-}
-
-
-/*!
-    Creates a QtSingleApplication object with the application
-    identifier \a appId. \a argc and \a argv are passed on to the
-    QAppliation constructor.
-*/
-
-QtSingleApplication::QtSingleApplication(const QString &appId, int &argc, char **argv)
-    : QApplication(argc, argv)
-{
-    sysInit(appId);
-}
-
-#if QT_VERSION < 0x050000
-
-/*!
-    Creates a QtSingleApplication object. The application identifier
-    will be QCoreApplication::applicationFilePath(). \a argc, \a
-    argv, and \a type are passed on to the QAppliation constructor.
-*/
-QtSingleApplication::QtSingleApplication(int &argc, char **argv, Type type)
-    : QApplication(argc, argv, type)
-{
-    sysInit();
-}
-
-
-#  if defined(Q_WS_X11)
-/*!
-  Special constructor for X11, ref. the documentation of
-  QApplication's corresponding constructor. The application identifier
-  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
-  and \a cmap are passed on to the QApplication constructor.
-*/
-QtSingleApplication::QtSingleApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
-    : QApplication(dpy, visual, cmap)
-{
-    sysInit();
-}
-
-/*!
-  Special constructor for X11, ref. the documentation of
-  QApplication's corresponding constructor. The application identifier
-  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
-  argv, \a visual, and \a cmap are passed on to the QApplication
-  constructor.
-*/
-QtSingleApplication::QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-    : QApplication(dpy, argc, argv, visual, cmap)
-{
-    sysInit();
-}
-
-/*!
-  Special constructor for X11, ref. the documentation of
-  QApplication's corresponding constructor. The application identifier
-  will be \a appId. \a dpy, \a argc, \a
-  argv, \a visual, and \a cmap are passed on to the QApplication
-  constructor.
-*/
-QtSingleApplication::QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
-    : QApplication(dpy, argc, argv, visual, cmap)
-{
-    sysInit(appId);
-}
-#  endif // Q_WS_X11
-#endif // QT_VERSION < 0x050000
-
-
-/*!
-    Returns true if another instance of this application is running;
-    otherwise false.
-
-    This function does not find instances of this application that are
-    being run by a different user (on Windows: that are running in
-    another session).
-
-    \sa sendMessage()
-*/
-
-bool QtSingleApplication::isRunning()
-{
-    return peer->isClient();
-}
-
-
-/*!
-    Tries to send the text \a message to the currently running
-    instance. The QtSingleApplication object in the running instance
-    will emit the messageReceived() signal when it receives the
-    message.
-
-    This function returns true if the message has been sent to, and
-    processed by, the current instance. If there is no instance
-    currently running, or if the running instance fails to process the
-    message within \a timeout milliseconds, this function return false.
-
-    \sa isRunning(), messageReceived()
-*/
-bool QtSingleApplication::sendMessage(const QString &message, int timeout)
-{
-    return peer->sendMessage(message, timeout);
-}
-
-
-/*!
-    Returns the application identifier. Two processes with the same
-    identifier will be regarded as instances of the same application.
-*/
-QString QtSingleApplication::id() const
-{
-    return peer->applicationId();
-}
-
-
-/*!
-  Sets the activation window of this application to \a aw. The
-  activation window is the widget that will be activated by
-  activateWindow(). This is typically the application's main window.
-
-  If \a activateOnMessage is true (the default), the window will be
-  activated automatically every time a message is received, just prior
-  to the messageReceived() signal being emitted.
-
-  \sa activateWindow(), messageReceived()
-*/
-
-void QtSingleApplication::setActivationWindow(QWidget* aw, bool activateOnMessage)
-{
-    actWin = aw;
-    if (activateOnMessage)
-        connect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
-    else
-        disconnect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
-}
-
-
-/*!
-    Returns the applications activation window if one has been set by
-    calling setActivationWindow(), otherwise returns 0.
-
-    \sa setActivationWindow()
-*/
-QWidget* QtSingleApplication::activationWindow() const
-{
-    return actWin;
-}
-
-
-/*!
-  De-minimizes, raises, and activates this application's activation window.
-  This function does nothing if no activation window has been set.
-
-  This is a convenience function to show the user that this
-  application instance has been activated when he has tried to start
-  another instance.
-
-  This function should typically be called in response to the
-  messageReceived() signal. By default, that will happen
-  automatically, if an activation window has been set.
-
-  \sa setActivationWindow(), messageReceived(), initialize()
-*/
-void QtSingleApplication::activateWindow()
-{
-    if (actWin) {
-        actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized);
-        actWin->raise();
-        actWin->activateWindow();
-    }
-}
-
-
-/*!
-    \fn void QtSingleApplication::messageReceived(const QString& message)
-
-    This signal is emitted when the current instance receives a \a
-    message from another instance of this application.
-
-    \sa sendMessage(), setActivationWindow(), activateWindow()
-*/
-
-
-/*!
-    \fn void QtSingleApplication::initialize(bool dummy = true)
-
-    \obsolete
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.h ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.h
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,68 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#ifndef QTSINGLEAPPLICATION_H
-#define QTSINGLEAPPLICATION_H
-
-#include <QApplication>
-
-class QtLocalPeer;
-
-#if defined(Q_OS_WIN)
-#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
-#    define QT_QTSINGLEAPPLICATION_EXPORT
-#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
-#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
-#      undef QT_QTSINGLEAPPLICATION_EXPORT
-#    endif
-#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
-#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
-#    undef QT_QTSINGLEAPPLICATION_EXPORT
-#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
-#  endif
-#else
-#  define QT_QTSINGLEAPPLICATION_EXPORT
-#endif
-
-class QT_QTSINGLEAPPLICATION_EXPORT QtSingleApplication : public QApplication
-{
-    Q_OBJECT
-
-public:
-    QtSingleApplication(int &argc, char **argv, bool GUIenabled = true);
-    QtSingleApplication(const QString &id, int &argc, char **argv);
-#if QT_VERSION < 0x050000
-    QtSingleApplication(int &argc, char **argv, Type type);
-#  if defined(Q_WS_X11)
-    QtSingleApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-    QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
-    QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
-#  endif // Q_WS_X11
-#endif // QT_VERSION < 0x050000
-
-    bool isRunning();
-    QString id() const;
-
-    void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
-    QWidget* activationWindow() const;
-
-    // Obsolete:
-    void initialize(bool dummy = true)
-        { isRunning(); Q_UNUSED(dummy) }
-
-public Q_SLOTS:
-    bool sendMessage(const QString &message, int timeout = 5000);
-    void activateWindow();
-
-
-Q_SIGNALS:
-    void messageReceived(const QString &message);
-
-
-private:
-    void sysInit(const QString &appId = QString());
-    QtLocalPeer *peer;
-    QWidget *actWin;
-};
-
-#endif // QTSINGLEAPPLICATION_H
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.pri ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.pri
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsingleapplication.pri	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsingleapplication.pri	1970-01-01 08:00:00.000000000 +0800
@@ -1,17 +0,0 @@
-include(../common.pri)
-INCLUDEPATH += $$PWD
-DEPENDPATH += $$PWD
-QT *= network
-greaterThan(QT_MAJOR_VERSION, 4): QT *= widgets
-
-qtsingleapplication-uselib:!qtsingleapplication-buildlib {
-    LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
-} else {
-    SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
-    HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
-}
-
-win32 {
-    contains(TEMPLATE, lib):contains(CONFIG, shared):DEFINES += QT_QTSINGLEAPPLICATION_EXPORT
-    else:qtsingleapplication-uselib:DEFINES += QT_QTSINGLEAPPLICATION_IMPORT
-}
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.cpp ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.cpp
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.cpp	1970-01-01 08:00:00.000000000 +0800
@@ -1,112 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-
-#include "qtsinglecoreapplication.h"
-#include "qtlocalpeer.h"
-
-/*!
-    \class QtSingleCoreApplication qtsinglecoreapplication.h
-    \brief A variant of the QtSingleApplication class for non-GUI applications.
-
-    This class is a variant of QtSingleApplication suited for use in
-    console (non-GUI) applications. It is an extension of
-    QCoreApplication (instead of QApplication). It does not require
-    the QtGui library.
-
-    The API and usage is identical to QtSingleApplication, except that
-    functions relating to the "activation window" are not present, for
-    obvious reasons. Please refer to the QtSingleApplication
-    documentation for explanation of the usage.
-
-    A QtSingleCoreApplication instance can communicate to a
-    QtSingleApplication instance if they share the same application
-    id. Hence, this class can be used to create a light-weight
-    command-line tool that sends commands to a GUI application.
-
-    \sa QtSingleApplication
-*/
-
-/*!
-    Creates a QtSingleCoreApplication object. The application identifier
-    will be QCoreApplication::applicationFilePath(). \a argc and \a
-    argv are passed on to the QCoreAppliation constructor.
-*/
-
-QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv)
-    : QCoreApplication(argc, argv)
-{
-    peer = new QtLocalPeer(this);
-    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-}
-
-
-/*!
-    Creates a QtSingleCoreApplication object with the application
-    identifier \a appId. \a argc and \a argv are passed on to the
-    QCoreAppliation constructor.
-*/
-QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId, int &argc, char **argv)
-    : QCoreApplication(argc, argv)
-{
-    peer = new QtLocalPeer(this, appId);
-    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
-}
-
-
-/*!
-    Returns true if another instance of this application is running;
-    otherwise false.
-
-    This function does not find instances of this application that are
-    being run by a different user (on Windows: that are running in
-    another session).
-
-    \sa sendMessage()
-*/
-
-bool QtSingleCoreApplication::isRunning()
-{
-    return peer->isClient();
-}
-
-
-/*!
-    Tries to send the text \a message to the currently running
-    instance. The QtSingleCoreApplication object in the running instance
-    will emit the messageReceived() signal when it receives the
-    message.
-
-    This function returns true if the message has been sent to, and
-    processed by, the current instance. If there is no instance
-    currently running, or if the running instance fails to process the
-    message within \a timeout milliseconds, this function return false.
-
-    \sa isRunning(), messageReceived()
-*/
-
-bool QtSingleCoreApplication::sendMessage(const QString &message, int timeout)
-{
-    return peer->sendMessage(message, timeout);
-}
-
-
-/*!
-    Returns the application identifier. Two processes with the same
-    identifier will be regarded as instances of the same application.
-*/
-
-QString QtSingleCoreApplication::id() const
-{
-    return peer->applicationId();
-}
-
-
-/*!
-    \fn void QtSingleCoreApplication::messageReceived(const QString& message)
-
-    This signal is emitted when the current instance receives a \a
-    message from another instance of this application.
-
-    \sa sendMessage()
-*/
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.h ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.h
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,34 +0,0 @@
-// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-// SPDX-License-Identifier: BSD-3-Clause
-
-#ifndef QTSINGLECOREAPPLICATION_H
-#define QTSINGLECOREAPPLICATION_H
-
-#include <QCoreApplication>
-
-class QtLocalPeer;
-
-class QtSingleCoreApplication : public QCoreApplication
-{
-    Q_OBJECT
-
-public:
-    QtSingleCoreApplication(int &argc, char **argv);
-    QtSingleCoreApplication(const QString &id, int &argc, char **argv);
-
-    bool isRunning();
-    QString id() const;
-
-public Q_SLOTS:
-    bool sendMessage(const QString &message, int timeout = 5000);
-
-
-Q_SIGNALS:
-    void messageReceived(const QString &message);
-
-
-private:
-    QtLocalPeer* peer;
-};
-
-#endif // QTSINGLECOREAPPLICATION_H
diff -Nru ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.pri ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.pri
--- ukui-clipboard-1.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.pri	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/qtsingleapplication/src/qtsinglecoreapplication.pri	1970-01-01 08:00:00.000000000 +0800
@@ -1,10 +0,0 @@
-INCLUDEPATH	+= $$PWD
-DEPENDPATH      += $$PWD
-HEADERS		+= $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
-SOURCES		+= $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
-
-QT *= network
-
-win32:contains(TEMPLATE, lib):contains(CONFIG, shared) {
-    DEFINES += QT_QTSINGLECOREAPPLICATION_EXPORT=__declspec(dllexport)
-}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/CMakeLists.txt ukui-clipboard-2.0.0.0/taskTray/CMakeLists.txt
--- ukui-clipboard-1.0.0.0/taskTray/CMakeLists.txt	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/CMakeLists.txt	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,25 @@
+set(taskTray_SRCS
+	main.cpp
+        clipboarddata.cpp
+        clipboarddata.h
+        clipboardtray.cpp
+        clipboardtray.h
+        clipboardmodel.cpp
+        clipboardmodel.h
+        source.qrc
+        ../qml.qrc
+)
+
+add_executable(ukui-clipboard-tray ${taskTray_SRCS})
+
+target_link_libraries(ukui-clipboard-tray
+	Qt5::Widgets
+	Qt5::Core
+	Qt5::Gui
+        Qt5::QuickWidgets
+        qtsingleapplication
+	-lukui-log4qt
+)
+
+install(TARGETS ukui-clipboard-tray DESTINATION bin)
+install(FILES ./data/ukui-clipboard-tray.desktop DESTINATION /etc/xdg/autostart/)
diff -Nru ukui-clipboard-1.0.0.0/taskTray/ClipboardMainWindow.qml ukui-clipboard-2.0.0.0/taskTray/ClipboardMainWindow.qml
--- ukui-clipboard-1.0.0.0/taskTray/ClipboardMainWindow.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/ClipboardMainWindow.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,201 @@
+import QtQuick 2.15
+import QtQuick.Window 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
+
+ApplicationWindow {
+    id: mainwindow
+    visible: tray.windowVisible
+    title: qsTr("Ukui-clipboardd MainWindow")
+    color: "#99FFFFFF"
+
+    //去不掉最小化按钮
+    flags: Qt.Window |
+           Qt.CustomizeWindowHint |
+           Qt.WindowTitleHint |
+           Qt.WindowStaysOnTopHint |
+           Qt.WindowCloseButtonHint &
+           ~Qt.WindowMinimizeButtonHint &
+           ~Qt.WindowMaximizeButtonHint
+
+    width: 372
+    height: 600
+    minimumWidth: 372
+    minimumHeight: 600
+    maximumWidth: 372
+    maximumHeight: 600
+
+    property string enterColor : "#0f000000"
+    property string exitColor : "#99FFFFFF"
+
+    onClosing: {
+        tray.setWindowVisible(false)
+        return false
+    }
+
+    Row {
+        id: rowlayout
+        width: 341
+        height: 32
+        spacing: 0
+        anchors.top: parent.top
+        anchors.topMargin: 8
+        anchors.left: parent.left
+        anchors.leftMargin: 16
+
+        MyTabButton {
+            id: allButt
+            text: qsTr("All")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    tray.setCurrentModel(tray.models[0])
+                }
+                onEntered: {
+                    allButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    allButt.colorValue = exitColor
+                }
+            }
+
+        }
+        MyTabButton {
+            id: textButt
+            text: qsTr("Text")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    tray.setCurrentModel(tray.models[1])
+                }
+                onEntered: {
+                    textButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    textButt.colorValue = exitColor
+                }
+            }
+        }
+        MyTabButton {
+            id: imageButt
+            text: qsTr("Image")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    tray.setCurrentModel(tray.models[2])
+                }
+                onEntered: {
+                    imageButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    imageButt.colorValue = exitColor
+                }
+            }
+        }
+        MyTabButton {
+            id: fileButt
+            text: qsTr("File")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    tray.setCurrentModel(tray.models[3])
+                }
+                onEntered: {
+                    fileButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    fileButt.colorValue = exitColor
+                }
+            }
+        }
+        MyTabButton {
+            id: linkButt
+            text: qsTr("Link")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    tray.setCurrentModel(tray.models[4])
+                }
+                onEntered: {
+                    linkButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    linkButt.colorValue = exitColor
+                }
+            }
+        }
+        MyTabButton {
+            id: collectionButt
+            text: qsTr("Collection")
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    console.log("collectionButt is Clicked")
+                    tray.setCurrentModel(tray.models[5])
+                }
+                onEntered: {
+                    collectionButt.colorValue = enterColor
+                }
+
+                onExited: {
+                    collectionButt.colorValue = exitColor
+                }
+            }
+        }
+    }
+
+    ListView {
+        id: mainview
+        width: 372
+        height: 545
+        visible: true
+
+        anchors.top: rowlayout.bottom
+        anchors.topMargin: 14
+        spacing: 10
+
+        ScrollBar.vertical: ScrollBar {
+            id: scrollBar
+            visible: true
+            //policy: ScrollBar.AlwaysOn
+            background: Control {
+                background: Rectangle {
+                    color: "lightgray"
+                    radius: 4
+                    width: 6
+                }
+            }
+        }
+
+//        Component.onCompleted: {
+//            scrollBar.visible = Qt.binding(function() { return mainview.model.count > 4 ? true : false})
+//        }
+
+        clip: true
+        model: tray.currentModel
+        //model: 100
+        delegate: buttoncomponent
+
+        Component {
+            id: buttoncomponent
+            MyButton {
+                id: mybutton
+                anchors.left: parent.left
+                anchors.leftMargin: 16
+            }
+        }
+    }
+}
+
+
diff -Nru ukui-clipboard-1.0.0.0/taskTray/MyButton.qml ukui-clipboard-2.0.0.0/taskTray/MyButton.qml
--- ukui-clipboard-1.0.0.0/taskTray/MyButton.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/MyButton.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,183 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
+//import MyComponents 1.0
+
+Rectangle {
+    id: myButton
+    visible: true
+    width: 340
+    height: 106
+    color: "#99FFFFFF"
+    radius: 8
+    border.width: 1
+    border.color: "gray"
+
+    property bool qmlHasImage: ClipboardData.hasImage
+    property date time: ClipboardData.sourceTime
+    property string text1 : ClipboardData.sourceText
+    property url imageSource: ClipboardData.imageUrl
+    property bool isCollected : ClipboardData.isCollected
+
+//    Component.onCompleted: {
+//        console.log("hasImage=",hasImage)
+//    }
+
+    anchors.margins: {
+        top: 10
+    }
+
+    Rectangle {
+        id: topLable
+        visible: true
+        width: 320
+        height: 18
+        //color: "yellow"
+
+        anchors.right: parent.right
+        anchors.rightMargin: 10
+        anchors.leftMargin: 10
+        anchors.topMargin: 1
+        anchors.top: parent.top
+
+        RelativeTimeLabel {
+            id: timeLabel
+            targetTime: time
+            anchors.right: parent.right
+            anchors.rightMargin: 25
+            anchors.top: parent.top
+            anchors.topMargin: 10
+        }
+
+        Rectangle {
+            id: copyButton
+            visible: false
+            width: 16
+            height: 16
+            anchors.right: topLable.right
+
+            Image {
+                id: iconCopy
+                source: "./data/copy.svg"
+                anchors.fill: copyButton
+            }
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    ClipboardData.copyToClipboard()
+                }
+            }
+        }
+
+        Rectangle {
+            id: collectionButton
+            visible: false
+            width: 16
+            height: 16
+            anchors.right: copyButton.left
+            anchors.rightMargin: 8
+
+            Image {
+                id: iconColl
+                source: ClipboardData.isCollected? "./data/collection.svg" : "./data/uncollection.svg"
+                anchors.fill: collectionButton
+            }
+
+            MouseArea{
+                anchors.fill: parent
+                hoverEnabled: true
+                onClicked: {
+                    ClipboardData.setIsCollected(!ClipboardData.isCollected)
+                }
+            }
+        }
+    }
+
+    function calculateImageComponentWidth() {
+        var intWidth = 0
+        if(qmlHasImage) {
+            if (text1 == "scaledImageString") {
+                intWidth = 324
+            } else {
+                intWidth = 48
+            }
+        } else {
+            intWidth = 0
+        }
+        return intWidth;
+    }
+
+    function calculateTextItemWidth() {
+        var intWidth = 0
+        if(qmlHasImage) {
+            if (text1 == "scaledImageString") {
+                intWidth = 0
+            } else {
+                intWidth = 240
+            }
+        } else {
+            intWidth = 324
+        }
+        return intWidth;
+    }
+
+    RowLayout {
+        anchors.centerIn: parent
+        width: 324
+        height: 68
+        anchors.left: myButton.left
+        anchors.leftMargin: 11
+        anchors.top: topLable.bottom
+
+        Image {
+            id: imageComponent
+            source: imageSource
+            Layout.preferredWidth: calculateImageComponentWidth()
+            Layout.preferredHeight: 48
+            visible: true
+            fillMode: Image.PreserveAspectFit
+            horizontalAlignment: Image.AlignLeft
+        }
+
+        Item {
+            id: textItem
+            Layout.preferredHeight: 68
+            Layout.preferredWidth: calculateTextItemWidth()
+
+            Text {
+                id: textComponent
+                text: text1
+                wrapMode: Text.WordWrap
+                elide: Text.ElideRight
+                verticalAlignment: Text.AlignVCenter // 确保垂直居中
+                horizontalAlignment: Text.AlignLeft // 确保水平左对齐
+                width: parent.width
+                height: parent.height
+                clip: true // 确保内容不会溢出容器边界
+            }
+        }
+
+    }
+
+    //myButton的MouseArea必须放在后面
+    //不然收藏和复制按钮会出现闪动现象
+    MouseArea{
+        anchors.fill: parent
+        hoverEnabled: true
+        propagateComposedEvents: true
+
+        onEntered: {
+            parent.border.color = "#1D72F2"
+            timeLabel.visible = false
+            copyButton.visible = true
+            collectionButton.visible = true
+        }
+        onExited: {
+            parent.border.color = "gray"
+            copyButton.visible = false
+            collectionButton.visible = false
+            timeLabel.visible = true
+        }
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/MyTabButton.qml ukui-clipboard-2.0.0.0/taskTray/MyTabButton.qml
--- ukui-clipboard-1.0.0.0/taskTray/MyTabButton.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/MyTabButton.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,45 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+
+Button {
+    id: myTabButton
+    width: 56
+    height: 32
+    hoverEnabled: true
+    property string colorValue : "#99FFFFFF"
+
+    contentItem: Text {
+        text: myTabButton.text
+        horizontalAlignment: Text.AlignHCenter
+        verticalAlignment: Text.AlignVCenter
+        font.pixelSize: 14
+        color: "#1A1A1A"
+    }
+
+    //myTabButton.text会被下方设置的属性遮住
+    background: Rectangle{
+        id: myTabButtonRec
+        border.width: 1
+        radius: 5
+        border.color: "transparent"
+        color: colorValue
+    }
+
+//    Component.onCompleted: {
+//        myTabButtonRec.color = Qt.binding(function() { return MouseArea.entered()?  "#0f000000" : "#99FFFFFF"})
+//    }
+
+//    MouseArea{
+//        //anchors.fill: parent会覆盖外部的onClicked函数,得在MouseArea中重新实现
+//        anchors.fill: parent
+//        hoverEnabled: true
+
+//        onEntered: {
+//            myTabButtonRec.color = "#0f000000"
+//        }
+
+//        onExited: {
+//            myTabButtonRec.color = "#99FFFFFF"
+//        }
+//    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/RelativeTimeLabel.qml ukui-clipboard-2.0.0.0/taskTray/RelativeTimeLabel.qml
--- ukui-clipboard-1.0.0.0/taskTray/RelativeTimeLabel.qml	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/RelativeTimeLabel.qml	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,55 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+
+Item {
+    id: root
+    property date targetTime // 目标时间点
+    property string relativeText: "" // 显示的相对时间文本
+    readonly property int updateInterval: 60000 // 每分钟更新一次
+
+    Timer {
+        id: updateTimer
+        interval: root.updateInterval
+        repeat: true
+        running: true
+        onTriggered: updateRelativeTime()
+    }
+
+    Component.onCompleted: {
+        if (targetTime) {
+            updateRelativeTime();
+        }
+    }
+
+    function updateRelativeTime() {
+        var now = new Date();
+        var diff = now - targetTime;
+        var seconds = Math.floor(diff / 1000);
+        var minutes = Math.floor(seconds / 60);
+        var hours = Math.floor(minutes / 60);
+        var days = Math.floor(hours / 24);
+
+        if (minutes < 1) {
+            relativeText = qsTr("just now");
+        } else if (minutes < 60) {
+            relativeText = minutes + (minutes === 1 ? qsTr(" minute ago") : qsTr(" minutes ago"));
+        } else if (hours < 24) {
+            relativeText = hours + (hours === 1 ? qsTr(" hour ago") : qsTr(" hours ago"));
+        } else if (days < 3) {
+            relativeText = days + (days === 1 ? qsTr(" day ago") : qsTr(" days ago"));
+        } else {
+            relativeText = qsTr("3 days ago");
+        }
+        console.log("targetTime",targetTime)
+        console.log("minutes=",minutes)
+    }
+
+    Text {
+        anchors.centerIn: parent
+        text: relativeText
+        color: "#61000000"
+        font.pixelSize: 12
+        horizontalAlignment: Text.AlignRight
+        verticalAlignment: Text.AlignVCenter
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboarddata.cpp ukui-clipboard-2.0.0.0/taskTray/clipboarddata.cpp
--- ukui-clipboard-1.0.0.0/taskTray/clipboarddata.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboarddata.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,93 @@
+#include "clipboarddata.h"
+#include <QDebug>
+#include <QBuffer>
+#include <QMimeData>
+
+clipboardData::clipboardData(QObject *parent)
+    : QObject(parent), m_sourceText("")
+{
+
+}
+
+QString clipboardData::id()
+{
+    return m_id;
+}
+
+void clipboardData::setId(QString str)
+{
+    m_id = str;
+}
+
+bool clipboardData::hasImage()
+{
+    return m_hasImage;
+}
+
+void clipboardData::setHasImage(bool value)
+{
+    m_hasImage = value;
+    emit HasImageChanged();
+}
+
+QUrl clipboardData::imageUrl()
+{
+    return m_imageUrl;
+}
+
+void clipboardData::setImage(QImage ima)
+{
+    QByteArray bytes;
+    QBuffer buffer(&bytes);
+    buffer.open(QIODevice::WriteOnly);
+    ima.save(&buffer, "PNG"); // saves the image into bytes in PNG format
+    m_imageUrl = QString("data:image/png;base64,") + bytes.toBase64();
+    emit imageUrlChanged();
+}
+
+QString clipboardData::sourceText()
+{
+    return m_sourceText;
+}
+
+void clipboardData::setSourceText(QString str)
+{
+    m_sourceText = str;
+    emit sourceTextChanged();
+}
+
+QDateTime clipboardData::sourceTime()
+{
+    return m_sourceTime;
+}
+
+void clipboardData::setSourceTime(QDateTime dataTime)
+{
+    m_sourceTime = dataTime;
+    emit sourceTimeChanged();
+}
+
+bool clipboardData::isCollected()
+{
+    return m_isCollected;
+}
+
+void clipboardData::setIsCollected(bool flag)
+{
+    qDebug()<<"flag="<<flag;
+    if (m_isCollected != flag) {
+        m_isCollected = flag;
+        emit isCollectedChanged();
+    }
+}
+
+void clipboardData::copyToClipboard()
+{
+    if (m_mineData == nullptr || m_dataClipboard == nullptr) {
+        qWarning()<<"数据为空";
+    } else {
+        // 设置新的QMimeData到剪贴板
+        m_dataClipboard->setMimeData(m_mineData);
+        emit dataCopyed();
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboarddata.h ukui-clipboard-2.0.0.0/taskTray/clipboarddata.h
--- ukui-clipboard-1.0.0.0/taskTray/clipboarddata.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboarddata.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,69 @@
+#ifndef CLIPBOARDDATA_H
+#define CLIPBOARDDATA_H
+#include <QObject>
+#include <QImage>
+#include <QDateTime>
+#include <QUrl>
+#include <QClipboard>
+
+class clipboardData : public QObject
+{
+    Q_OBJECT
+public:
+    enum Mode {
+        Text, /**> 文本 */
+        Image, /**> 图片 */
+        File, /**> 文件 */
+        Link /**> 链接 */
+    };
+    Q_ENUM(Mode)
+    clipboardData(QObject *parent = nullptr);
+
+    Q_PROPERTY(QString id READ id WRITE setId)
+    Q_PROPERTY(bool hasImage READ hasImage WRITE setHasImage NOTIFY HasImageChanged);
+    Q_PROPERTY(QUrl imageUrl READ imageUrl NOTIFY imageUrlChanged)
+    Q_PROPERTY(QString sourceText READ sourceText WRITE setSourceText NOTIFY sourceTextChanged);
+    Q_PROPERTY(QDateTime sourceTime READ sourceTime WRITE setSourceTime NOTIFY sourceTimeChanged);
+    Q_PROPERTY(bool isCollected READ isCollected WRITE setIsCollected NOTIFY isCollectedChanged);
+
+    Mode mode = Mode::Text;
+    QMimeData *m_mineData;
+    QClipboard *m_dataClipboard;
+
+    QString id();
+    bool hasImage();
+    QString sourceText();
+    QUrl imageUrl();
+    QDateTime sourceTime();
+    bool isCollected();
+
+    void setId(QString str);
+    void setHasImage(bool value);
+    //void setImageUrl(QImage ima);
+    void setSourceText(QString str);
+    void setSourceTime(QDateTime dataTime);
+
+    void setImage(QImage ima);
+
+public slots:
+    Q_INVOKABLE void setIsCollected(bool flag);
+    Q_INVOKABLE void copyToClipboard();
+
+signals:
+    void imageUrlChanged();
+    void sourceTextChanged();
+    void sourceTimeChanged();
+    void HasImageChanged();
+    void isCollectedChanged();
+    void dataCopyed();
+
+private:
+    QString m_id;
+    bool m_hasImage;
+    QDateTime m_sourceTime;
+    QString m_sourceText;
+    QUrl m_imageUrl;
+    bool m_isCollected = false;
+};
+
+#endif // CLIPBOARDDATA_H
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboardmodel.cpp ukui-clipboard-2.0.0.0/taskTray/clipboardmodel.cpp
--- ukui-clipboard-1.0.0.0/taskTray/clipboardmodel.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboardmodel.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,143 @@
+#include "clipboardmodel.h"
+#include <QVariant>
+#include <QDebug>
+
+Clipboardmodel::Clipboardmodel(QObject *parent)
+    : QAbstractListModel(parent)
+{
+}
+
+int Clipboardmodel::rowCount(const QModelIndex &parent) const
+{
+    if (parent.isValid())
+        return 0;
+
+    return m_items.size();
+}
+
+//QVariant Clipboardmodel::data(const QModelIndex &index, int role) const
+//{
+//    if (!index.isValid())
+//        return QVariant();
+
+//    clipboardData *item = m_items.at(index.row());
+
+//    switch (role) {
+//    case IdRole:
+//        return item->id();
+//    case HasImageRole:
+//        return item->hasImage();
+//    case SourceTextRole:
+//        return item->sourceText();
+//    case ImageUrlRole:
+//        return item->imageUrl();
+//    case SourceTimeRole:
+//        return QVariant::fromValue(item->sourceTime());
+//    case IsCollectedRole:
+//        return item->isCollected();
+//    default:
+//        return QVariant();
+//    }
+//}
+
+
+QVariant Clipboardmodel::data(const QModelIndex &index, int role) const
+{
+    if (!index.isValid())
+        return QVariant();
+
+    clipboardData *item = m_items.at(index.row());
+
+    switch (role) {
+    case ClipboardDataRole:
+        return QVariant::fromValue(m_items.at(index.row()));;
+    default:
+        return QVariant();
+    }
+}
+
+void Clipboardmodel::appendData(clipboardData *item)
+{
+    //if (!item || m_items.contains(item))
+    beginInsertRows(QModelIndex(), 0, 0);// 通知视图即将在索引0处插入新行
+    m_items.prepend(item);
+    endInsertRows();// 通知视图新行已插入
+}
+
+//QHash<int, QByteArray> Clipboardmodel::roleNames() const
+//{
+//    QHash<int, QByteArray> roles;
+//    roles[IdRole] = "id";
+//    roles[HasImageRole] = "hasImage";
+//    roles[SourceTextRole] = "sourceText";
+//    roles[ImageUrlRole] = "imageUrl";
+//    roles[SourceTimeRole] = "sourceTime";
+//    roles[IsCollectedRole] = "isCollected";
+//    return roles;
+//}
+
+QHash<int, QByteArray> Clipboardmodel::roleNames() const
+{
+    QHash<int, QByteArray> roles;
+    roles[ClipboardDataRole] = "ClipboardData";
+    return roles;
+}
+
+void Clipboardmodel::removeData(clipboardData *cData)
+{
+    int rowToRemove = -1;
+    for (int i = 0; i < m_items.size(); ++i) {
+        if (m_items[i] == cData) {
+            rowToRemove = i;
+            break;
+        }
+    }
+
+    if (rowToRemove == -1) {
+        qDebug() << "Data not found.";
+    }
+
+    // 准备移除一行,父节点为根节点
+    beginRemoveRows(QModelIndex(), rowToRemove, rowToRemove);
+
+    // 执行实际的数据删除逻辑
+    m_items.removeAt(rowToRemove);
+
+    // 完成移除操作
+    endRemoveRows();
+}
+
+void Clipboardmodel::setMode(Clipboardmodel::Mode mo)
+{
+    this->mode = mo;
+}
+
+Clipboardmodel::Mode Clipboardmodel::getMode()
+{
+    return this->mode;
+}
+
+clipboardData* Clipboardmodel::getClipboardData(const QString &id)
+{
+    int j = -1;
+    for (int i = 0; i < m_items.size(); ++i) {
+        if (m_items[i]->id() == id) {
+            j = i;
+            break;
+        }
+    }
+
+    clipboardData* data;
+    if (j >= 0) data = m_items[j];
+    return data;
+}
+
+clipboardData* Clipboardmodel::getFirstData()
+{
+    if (m_items.size() > 0)
+        return m_items[0];
+    else {
+        qWarning()<<"m_items 中没有数据";
+        return new clipboardData;
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboardmodel.h ukui-clipboard-2.0.0.0/taskTray/clipboardmodel.h
--- ukui-clipboard-1.0.0.0/taskTray/clipboardmodel.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboardmodel.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,52 @@
+#ifndef CLIPBOARDMODEL_H
+#define CLIPBOARDMODEL_H
+#include <QAbstractListModel>
+#include "clipboarddata.h"
+class Clipboardmodel : public QAbstractListModel
+{
+    Q_OBJECT
+
+public:
+    enum Mode {
+        Text, /**> 文本 */
+        Image, /**> 图片 */
+        File, /**> 文件 */
+        Link /**> 链接 */
+    };
+    Q_ENUM(Mode)
+
+//    enum RoleNames {
+//        IdRole = Qt::UserRole + 1,
+//        HasImageRole,
+//        ImageUrlRole,
+//        SourceTextRole,
+//        SourceTimeRole,
+//        IsCollectedRole
+//    };
+
+    enum RoleNames {
+        ClipboardDataRole = Qt::UserRole + 1
+    };
+
+    explicit Clipboardmodel(QObject *parent = nullptr);
+
+    // 继承的是抽象类,必须实现这些函数
+    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
+    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
+    void removeData(clipboardData *cData);
+
+    // 添加数据
+    void appendData(clipboardData *item);
+    void setMode(Clipboardmodel::Mode mo);
+    Clipboardmodel::Mode getMode();
+
+    Q_INVOKABLE clipboardData* getClipboardData(const QString &id);
+    clipboardData* getFirstData();
+
+    QHash<int, QByteArray> roleNames() const override;
+
+private:
+    QList<clipboardData*> m_items;
+    Mode mode;
+};
+#endif // CLIPBOARDMODEL_H
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboardtray.cpp ukui-clipboard-2.0.0.0/taskTray/clipboardtray.cpp
--- ukui-clipboard-1.0.0.0/taskTray/clipboardtray.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboardtray.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,331 @@
+#include "clipboardtray.h"
+#include <QDesktopWidget>
+#include <QDebug>
+#include <QTimer>
+#include <QDebug>
+#include <QFileIconProvider>
+#include <QRegularExpression>
+#include <QApplication>
+
+ClipboardTray::ClipboardTray(QWidget *parent)
+    : QWidget(parent, Qt::WindowMinimizeButtonHint | Qt::WindowCloseButtonHint | Qt::WindowStaysOnTopHint)
+{
+    InitClipboardTray();
+    InitMenu();
+    mSystemTray->setVisible(true);
+    InitData();
+}
+
+/*
+*	注册托盘图标,绑定激活事件(包括点击,双击,右键)
+*/
+void ClipboardTray::InitClipboardTray()
+{
+    mSystemTray = new QSystemTrayIcon(this);
+    mSystemTray->setIcon(QIcon(":/source/data/clipboard.svg"));
+    mSystemTray->setToolTip(QString::fromLocal8Bit("ukui-clipboard"));
+    connect(mSystemTray, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
+            this, SLOT(ActiveTray(QSystemTrayIcon::ActivationReason)));
+    QString strMsg = "图标闪变!";
+    mSystemTray->showMessage(tr("消息"), strMsg, QSystemTrayIcon::Information, 5000);
+
+      //此悬浮事件仅在2309商业版本上支持,如需使用需要升级任务栏和QT版本
+//    connect(mSystemTray, SIGNAL(hovered(QSystemTrayIcon::ActivationReason)),
+//            this, SLOT(HoverTray(QSystemTrayIcon::ActivationReason)));
+}
+void ClipboardTray::ActiveTray(QSystemTrayIcon::ActivationReason reason)
+{
+    switch(reason) {
+        case QSystemTrayIcon::DoubleClick:
+            qDebug()<<">>>>>>> 鼠标双击~";
+            break;
+        case QSystemTrayIcon::Trigger:
+            setWindowVisible();
+            qDebug()<<">>>>>>> 鼠标左键点击~";
+            break;
+        case QSystemTrayIcon::MiddleClick:
+            qDebug()<<">>>>>>> 鼠标中键点击~";
+            break;
+        case QSystemTrayIcon::Context:
+            qDebug()<<">>>>>>> 鼠标右键点击~";
+            ShowMenu(); //应用显示菜单窗口
+            break;
+
+            //此悬浮事件仅在2309商业版本上支持,如需使用需要升级任务栏和QT版本
+//        case QSystemTrayIcon::Hover:
+//            qDebug()<<">>>>>>> 鼠标悬浮~";
+//            break;
+        default:
+            break;
+    }
+}
+
+void ClipboardTray::HoverTray(QSystemTrayIcon::ActivationReason reason)
+{
+    qDebug()<<">>>>>>>>>>HoverTray "<<reason;
+}
+
+/*
+*	初始化菜单,将action添加到菜单,菜单合入托盘
+*/
+void ClipboardTray::InitMenu()
+{
+    /* 创建菜单和行为实例 */
+    mMenu = new QMenu(this);
+    mQuitAction = new QAction(mMenu); 		//退出
+    connect(mQuitAction, &QAction::triggered, [this]() {
+        QGuiApplication::quit();
+    });
+    mShowMainWindowAction = new QAction(mMenu);	//show窗口
+    connect(mShowMainWindowAction, &QAction::triggered, [this]() {
+        setWindowVisible();
+    });
+    mQuitAction->setText(tr("Log Out"));
+    mShowMainWindowAction->setText(tr("Show Main Window"));
+
+    mMenu->addAction(mShowMainWindowAction);
+    mMenu->addAction(mQuitAction);
+
+    /*setContextMenu设置后,应用的右键菜单会由托盘统一管理,主题会跟随系统主题(推荐使用);
+    如果右键菜单比较复杂(包含子窗口、图标、按钮、动态显示等),建议应用不要使用setContextMenu,
+    并且在ActiveTray中右键点击部分自己处理菜单事件。*/
+    mSystemTray->setContextMenu(mMenu);
+}
+
+void ClipboardTray::ShowMenu()
+{
+    //如果没有设置setContextMenu的话,点击托盘图标时会走到这个槽函数,由应用自行显示菜单。
+    //注意:这里需要指定菜单的显示位置,可以通过获取点击时的鼠标的坐标和桌面可用做坐标计算要显示的位置。
+    QSize menuSize = mMenu->sizeHint();
+    QPoint point = QCursor::pos();
+    QRect deskRect = QApplication::desktop()->availableGeometry(this); //获取桌面可用坐标
+    mMenu->move(point.x(), deskRect.height() - menuSize.height());
+    mMenu->show();
+}
+
+void ClipboardTray::setCurrentModel(Clipboardmodel *model)
+{
+    qDebug()<<"setCurrentModel in,model szie = " << model->rowCount();
+    m_currentModel = model;
+    emit currentModelChanged();
+}
+
+Clipboardmodel* ClipboardTray::currentModel()
+{
+    return m_currentModel;
+}
+
+QVector<Clipboardmodel*> ClipboardTray::models()
+{
+    return m_models;
+}
+
+void ClipboardTray::InitData()
+{
+    qDebug()<<"InitData!";
+    m_clipboard = QApplication::clipboard();
+    m_models.append(allModel);
+    m_models.append(textModel);
+    m_models.append(imageModel);
+    m_models.append(fileModel);
+    m_models.append(linkModel);
+    m_models.append(collectionModel);
+    setCurrentModel(m_models.first());
+    connect(m_clipboard,&QClipboard::dataChanged,this,&ClipboardTray::dataAdd);
+}
+
+bool isWebUrl(const QString &str) {
+    QUrl url(str);
+    // 检查URL是否有效并且其方案是http或https
+    return url.isValid() && (url.scheme() == "http" || url.scheme() == "https");
+}
+
+QSize calculateProportionalSize(const QSize &originalSize, int maxHeight, int maxWidth) {
+    int originalWidth = originalSize.width();
+    int originalHeight = originalSize.height();
+
+    double ratio = static_cast<double>(originalWidth) / originalHeight;
+
+    // 首先尝试基于高度缩放
+    int newHeight = qMin(originalHeight, maxHeight);
+    int newWidth = static_cast<int>(newHeight * ratio);
+
+    // 如果基于高度缩放后的宽度超过了最大宽度,则根据宽度重新计算
+    if (newWidth > maxWidth) {
+        newWidth = maxWidth;
+        newHeight = static_cast<int>(newWidth / ratio);
+    }
+
+    return QSize(newWidth, newHeight);
+}
+
+bool ClipboardTray::windowVisible()
+{
+    return m_windowVisible;
+}
+
+void ClipboardTray::setWindowVisible(bool flag)
+{
+    if(flag == m_windowVisible)
+        return;
+
+    m_windowVisible = flag;
+    emit windowVisibleChanged();
+
+}
+
+void ClipboardTray::dataAdd()
+{
+    qDebug()<<"dataAdd!";
+    const QMimeData *mimeData = m_clipboard->mimeData();
+    if (mimeData == nullptr) {
+        qWarning()<<"data is empty";
+        return;
+    }
+    qDebug()<<"获取"<<mimeData->urls().size()<<"个urls";
+    if (mimeData->urls().size() == 1) { //暂时只支持对一个文件复制
+        QImage image(mimeData->urls().at(0).path());
+        if (image.isNull()) {//url为系统文件
+            qDebug()<<mimeData->urls().at(0).fileName();
+            qDebug()<<"txt文本,.wps文件,压缩包,文件夹";
+            if (mimeData->urls().at(0).isLocalFile()) {
+                // 从 QUrl 获取本地文件路径
+                QString localFilePath = mimeData->urls().at(0).toLocalFile();
+                QFileInfo fileInfo(localFilePath);
+                QFileIconProvider iconProvider;
+                QIcon fileIcon = iconProvider.icon(fileInfo);
+                int width = 48, height = 48;  // 你可以根据需要调整这个尺寸
+                QPixmap pixmap = fileIcon.pixmap(width, height);
+                QImage image = pixmap.toImage();
+
+                handelData("string","string",image,mimeData->urls().at(0).fileName(),clipboardData::File,mimeData);
+            } else {
+                // 处理错误情况,比如不是一个本地文件
+                qDebug()<<"该url不是个本地文件";
+            }
+            return;
+        }
+        //为图片
+        QSize newSize = calculateProportionalSize(image.size(), 48, 324);
+        QImage scaledImage = image.scaled(newSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
+        qDebug()<<mimeData->urls().at(0).fileName();
+        qDebug()<<"jpg,svg图片";
+        handelData("string","string",scaledImage,"scaledImageString",clipboardData::Image,mimeData);
+    } else if (mimeData->hasHtml() && !mimeData->hasFormat("Art::Table ClipFormat")) {
+        QString str = mimeData->html();
+        QImage image;
+        if( isWebUrl(str) ) {
+            handelData("string","string",image,str,clipboardData::Link,mimeData);
+        } else {
+            handelData("string","string",image,str,clipboardData::Text,mimeData);
+        }
+        qDebug()<<"qt中复制一段代码,网页复制一段内容,";
+    } else if (mimeData->hasText()) {
+        QString str = mimeData->text();
+        QImage image;
+        if( isWebUrl(str) ) {
+            handelData("string","string",image,str,clipboardData::Link,mimeData);
+        } else {
+            handelData("string","string",image,str,clipboardData::Text,mimeData);
+        }
+        qDebug()<<"获取到了text或link,txt文本中复制的内容,";
+    } else {
+        qDebug()<<"获取到了未考虑内容";
+    }
+}
+
+void ClipboardTray::dataChanged()
+{
+    QObject *sender = this->sender();
+    if (clipboardData *mySender = qobject_cast<clipboardData*>(sender)) {
+        if (mySender->isCollected()) {
+            qDebug()<<"Data add,data string = "<<mySender->sourceText();
+            collectionModel->appendData(mySender);
+        } else {
+            qDebug()<<"Data remove";
+            collectionModel->removeData(mySender);
+        }
+    }
+}
+
+void ClipboardTray::dataNeedRemove()
+{
+    QObject *sender = this->sender();
+    if (clipboardData *mySender = qobject_cast<clipboardData*>(sender)) {
+        allModel->removeData(mySender);
+        textModel->removeData(mySender);
+        imageModel->removeData(mySender);
+        fileModel->removeData(mySender);
+        linkModel->removeData(mySender);
+    }
+}
+
+QMimeData* getMimedata(const QMimeData* mData)
+{
+    QMimeData *newMimeData = new QMimeData();
+
+    // 如果QMimeData包含URL列表,则也复制URL列表
+    if (mData->hasUrls()) {
+        QList<QUrl> urls = mData->urls();
+        newMimeData->setUrls(urls);
+    }
+
+    // 遍历QMimeData支持的所有格式并复制数据
+    foreach (QString format, mData->formats()) {
+        QByteArray data = mData->data(format);
+        newMimeData->setData(format, data);
+    }
+
+    // 如果QMimeData包含图像,则也复制图像
+    if (mData->hasImage()) {
+        QImage image = qvariant_cast<QImage>(mData->imageData());
+        newMimeData->setImageData(QVariant::fromValue(image));
+    }
+
+    // 如果QMimeData包含HTML,则也复制HTML
+    if (mData->hasHtml()) {
+        QString html = mData->html();
+        newMimeData->setHtml(html);
+    }
+
+    // 如果QMimeData包含文本,则也复制文本
+    if (mData->hasText()) {
+        QString text = mData->text();
+        newMimeData->setText(text);
+    }
+    return newMimeData;
+}
+
+void ClipboardTray::handelData(QString m_fromText, QString m_timeText, QImage m_image, QString m_sourceText, clipboardData::Mode mode, const QMimeData* mData)
+{
+    bool var = false;
+    if (mode == clipboardData::File || mode == clipboardData::Image) var = true;
+    num++;
+    emit myTextDatasChanged();
+    clipboardData *data = new clipboardData();
+    data->setId(QString::number(num));
+    data->setImage(m_image);
+    data->setSourceText(m_sourceText);
+    data->setSourceTime(QDateTime::currentDateTime());
+    data->mode = mode;
+    data->m_mineData = getMimedata(mData);
+    data->m_dataClipboard = m_clipboard;
+    data->setHasImage(var);
+    allModel->appendData(data);
+    QObject::connect(allModel->getFirstData(),&clipboardData::isCollectedChanged,this,&ClipboardTray::dataChanged);
+    QObject::connect(allModel->getFirstData(),&clipboardData::dataCopyed,this,&ClipboardTray::dataNeedRemove);
+
+    //QModelIndex index = allModel->index(0, 0);
+    //QString name = allModel->data(index, Clipboardmodel::SourceTextRole).toString();
+    //qDebug()<<"currentDateTime="<<QDateTime::currentDateTime();
+
+    if (mode == clipboardData::Text) {
+        textModel->appendData(data);
+    } else if (mode == clipboardData::Image) {
+        imageModel->appendData(data);
+    } else if (mode == clipboardData::File) {
+        fileModel->appendData(data);
+    } else if (mode == clipboardData::Link) {
+        linkModel->appendData(data);
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/clipboardtray.h ukui-clipboard-2.0.0.0/taskTray/clipboardtray.h
--- ukui-clipboard-1.0.0.0/taskTray/clipboardtray.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/clipboardtray.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,81 @@
+#ifndef CLIPBOARDTRAY_H
+#define CLIPBOARDTRAY_H
+
+#include <QtGui>
+#include <QSystemTrayIcon>
+#include <QObject>
+#include <QString>
+#include <QWidget>
+#include <QMenu>
+#include <QApplication>
+#include <QClipboard>
+#include "clipboardmodel.h"
+
+#include "clipboarddata.h"
+
+class ClipboardTray : public QWidget
+{
+    Q_OBJECT
+    Q_PROPERTY (Clipboardmodel* currentModel READ currentModel WRITE setCurrentModel NOTIFY currentModelChanged);
+    Q_PROPERTY (QVector<Clipboardmodel*> models READ models CONSTANT)
+    Q_PROPERTY (bool windowVisible READ windowVisible WRITE setWindowVisible NOTIFY windowVisibleChanged)
+
+public:
+    ClipboardTray(QWidget *parent = 0);
+    ~ClipboardTray(){};
+
+    QSystemTrayIcon* mSystemTray;	//系统托盘
+    QList<clipboardData> datas;
+    QClipboard *m_clipboard;
+    void handelData(QString m_fromText,QString m_timeText,QImage m_image,QString m_sourceText,clipboardData::Mode mode,const QMimeData* mData);
+
+    Clipboardmodel* currentModel();
+    //void setCurrentModel(Clipboardmodel* model);
+    QVector<Clipboardmodel*> models();
+    bool windowVisible();
+
+    Clipboardmodel *allModel = new Clipboardmodel();
+    Clipboardmodel *textModel = new Clipboardmodel();
+    Clipboardmodel *imageModel = new Clipboardmodel();
+    Clipboardmodel *fileModel = new Clipboardmodel();
+    Clipboardmodel *linkModel = new Clipboardmodel();
+    Clipboardmodel *collectionModel = new Clipboardmodel();
+
+    int num = 0;
+
+signals:
+    void myTextDatasChanged();
+    void currentModelChanged();
+    void windowVisibleChanged();
+
+public slots:
+    void dataAdd();
+    void setCurrentModel(Clipboardmodel* model);
+    void dataNeedRemove();
+    void setWindowVisible(bool flag = true);
+
+private:
+    void InitClipboardTray();
+    void InitMenu();
+    void InitData();
+
+private slots:
+    void ShowMenu();    	//菜单栏
+    void ActiveTray(QSystemTrayIcon::ActivationReason reason);
+    void HoverTray(QSystemTrayIcon::ActivationReason reason);
+    void dataChanged();
+
+private:
+
+    QMenu* mMenu;					//菜单栏按钮
+    QAction* mQuitAction;  			//退出
+    QAction* mShowMainWindowAction; //显示主面板
+
+    Clipboardmodel* m_currentModel;
+    QVector<Clipboardmodel*> m_models;
+
+    bool m_isDisplay=true;
+    bool m_windowVisible = false;
+};
+
+#endif // CLIPBOARDTRAY_H
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/clipboard.svg ukui-clipboard-2.0.0.0/taskTray/data/clipboard.svg
--- ukui-clipboard-1.0.0.0/taskTray/data/clipboard.svg	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/clipboard.svg	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="master_svg0_4_08360/4_08122/4_08067/4_07960"><rect x="0" y="0" width="24" height="24" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_4_08360/4_08122/4_08067/4_07960)"><g><g><path d="M16,7L17.510199999999998,7Q17.717399999999998,7,17.8587,7.14133Q18,7.28265,18,7.48976L18,13L18,18.025Q18,19,17.025,19L6.97498,19Q6,19,6,18.025L6,13L6,7.48976Q6,7,6.48976,7L8,7L8,5L6.48976,5Q5.45422,5,4.727111,5.727111Q4,6.45422,4,7.48976L4,18.025Q4,19.267699999999998,4.86617,20.1338Q5.73234,21,6.97498,21L17.025,21Q18.267699999999998,21,19.1338,20.1338Q20,19.267699999999998,20,18.025L20,13L20,7.48976Q20,6.45422,19.2729,5.727111Q18.5458,5,17.510199999999998,5L16,5L16,7Z" fill-rule="evenodd" fill="#333333" fill-opacity="1"/></g><g><rect x="8" y="11" width="8" height="1.7999999523162842" rx="0" fill="#333333" fill-opacity="1"/></g><g><rect x="8" y="15" width="8" height="1.7999999523162842" rx="0" fill="#333333" fill-opacity="1"/></g><g><rect x="9" y="4" width="6" height="4" rx="1" fill-opacity="0" stroke-opacity="1" stroke="#333333" fill="none" stroke-width="2"/></g></g></g></svg>
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/collection.svg ukui-clipboard-2.0.0.0/taskTray/data/collection.svg
--- ukui-clipboard-1.0.0.0/taskTray/data/collection.svg	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/collection.svg	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g><path d="M7.31727,1.463413C7.58065,0.84553,8.41935,0.8455280000000001,8.68273,1.463411C8.68273,1.463411,10.32313,5.31167,10.32313,5.31167C10.32313,5.31167,14.33,5.7539,14.33,5.7539C14.9734,5.8249,15.2325,6.659,14.752,7.11188C14.752,7.11188,11.7589,9.93246,11.7589,9.93246C11.7589,9.93246,12.5949,14.054,12.5949,14.054C12.7291,14.7158,12.0506,15.2313,11.4902,14.8933C11.4902,14.8933,8,12.7883,8,12.7883C8,12.7883,4.509790000000001,14.8933,4.509790000000001,14.8933C3.9494,15.2313,3.27088,14.7158,3.4051,14.054C3.4051,14.054,4.24109,9.93246,4.24109,9.93246C4.24109,9.93246,1.248038,7.11188,1.248038,7.11188C0.767467,6.659,1.0266367,5.8249,1.669988,5.7539C1.669988,5.7539,5.67687,5.31167,5.67687,5.31167C5.67687,5.31167,7.31727,1.463413,7.31727,1.463413Z" fill="#F4B30F" fill-opacity="1"/></g></g></svg>
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/copy.svg ukui-clipboard-2.0.0.0/taskTray/data/copy.svg
--- ukui-clipboard-1.0.0.0/taskTray/data/copy.svg	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/copy.svg	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g><g></g></g><g><g style="opacity:0.8822777271270752;"><rect x="4.5" y="4.5" width="10" height="10" rx="1.5" fill-opacity="0" stroke-opacity="0.8822777271270752" stroke="#1A1A1A" fill="none" stroke-width="1"/></g><g style="opacity:0.8822777271270752;"><path d="M4.15899,2L4.15899,1L2.5,1Q2.33028,1,2.16485,1.0379219Q1.999416,1.0758438,1.8466399999999998,1.14977Q1.693864,1.223697,1.561468,1.32989Q1.429073,1.436083,1.3237510000000001,1.5691730000000002L2.10792,2.1897200000000003Q2.25806,2,2.5,2L4.15899,2ZM8.65899,1L5.65899,1L5.65899,2L8.65899,2L8.65899,1ZM10.5,1L10.15899,1L10.15899,2L10.5,2Q11,2,11,2.5L11,2.81798L12,2.81798L12,2.5Q12,2.42631,11.9928,2.35297Q11.9856,2.27964,11.9712,2.20736Q11.9568,2.13509,11.9354,2.06457Q11.914,1.994056,11.8858,1.925975Q11.8576,1.857894,11.8229,1.792905Q11.7881,1.727916,11.7472,1.666645Q11.7063,1.6053730000000002,11.6595,1.54841Q11.6128,1.491447,11.5607,1.43934Q11.5086,1.387233,11.4516,1.340484Q11.3946,1.293736,11.3334,1.252796Q11.2721,1.211855,11.2071,1.177118Q11.1421,1.142381,11.074,1.114181Q11.0059,1.0859806,10.93543,1.0645895Q10.86491,1.0431983,10.79263,1.0288221Q10.72036,1.0144458,10.64703,1.00722291Q10.57369,1,10.5,1ZM1,3L1,6L2,6L2,3L1,3ZM4,11L2.5230300000000003,11L2.5230300000000003,12L4,12L4,11ZM1,10.5Q1,10.71808,1.0621009,10.92714Q1.124202,11.1362,1.243262,11.3189L2.08109,10.77297Q2,10.64853,2,10.5L2,7.5L1,7.5L1,10.5Z" fill-rule="evenodd" fill="#1A1A1A" fill-opacity="1"/></g></g></g></svg>
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/kylin-clipboard.svg ukui-clipboard-2.0.0.0/taskTray/data/kylin-clipboard.svg
--- ukui-clipboard-1.0.0.0/taskTray/data/kylin-clipboard.svg	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/kylin-clipboard.svg	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="master_svg0_4_11566/9_11849"><rect x="0" y="0" width="24" height="24" rx="0"/></clipPath><pattern x="-0.00010204315185546875" y="0" width="24" height="24" patternUnits="userSpaceOnUse" id="master_svg1_10_07472"><image x="0" y="0" width="392" height="393" transform="scale(0.061224489795918366,0.061068702290076333)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYgAAAGJCAYAAACQH6SDAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAACAASURBVHic7Z3rdttIkgbLst0z8/4PuzttW70/7FqXU1/eCuA94hweFEGKBCgpA5lZAMcAAAAAAAAAAAA4xKdbbwBcBX7PcAn+ufUGwGUhcDwu/O7gkUAmDwhB5v4543fE7xkuwRlBH3HcMQSO+6L6+9j5vfG7hjPZCezVn0EadwJB47ZEn3/2u+n+7vhdw5l0g3j2/OhxhHEjCBrXxfu8u+uPPAZwKXaDvPdYdz2cDIHk8qjPeHfdkdcCuDQqcFfW7f6ctw5OgkByGXaCfXTfG1fuZ+sBdqge3Uf3vfHO/WibYBOCxnl0j/azcXVdNM62B2CXiiCycXVdNPbWIYsTIGgcp3rkv96vSKC7zN7bWwfQJQvQUeDvLrPHovf2thWKEDD2qJZ5MgFEQb/6vGjpbZ+FvwNQdGce7UjAG0fPs+9dEYe6DwkEhh7VXkAn4Hcfq0rF2zYLfwMQ0Zl91An22f3qY+o9om1Tj4EDwaHGTu+gGuztrfu4eq9oO739AvDo9Bs6gV7duo+r9/K2LRqDgADh080Q5jIL8utjb8HzOjf13t42Z/sJsHKmHHZv78XXVO+tlmq/kIWA4PCRShmpIoQxcgG8maV6LFvnvXdVEvwNQIQKnBU5RAH9vblOPWafl7232tZof2AQHFa6ZaRKtvCWjKvLnYwj2vZs/wGyzMGTRDcjUCLIltG4WpJS+4koDASFn1QCaiaDKDNQyzdxXz2nIo5qycmOo3UAneyhIoko8GfrvOd0Mo1u+enlJfHqgSE7wu5mCSqwKylkt6pE1DZ42632OVoHUBFEJIkoU4iCf/XmvVZWuvK2e4xYGC/HqwaGaglpHXeyhOj2ubgukkZUvlKZA5KALl05rOuiMlBHBj+K6zxxVLMLb3+i8UvwikEhKydFYrBBOcoQPidjb+m9hveeniTU/tj9tvsPsBJJIisvRXKw9yMReMtoHGUokSzU/nj7/RJ8ufUGXJEj/YVqlhAFf28cratkFFlPItrfzmcGz0s16EX1+2rPIcsW1mW2riIRJY1PwxeFt9+fluUInvtUvIIgonLSETF4WYEdq5v3uCeLXUmMwrIConhOOkEua+6eJQc7/lFYn4nDjtdgn2UU6/5/csZPy7MLIssa7FiVkDwxVGXwefz8nLPneLJQ7531I9Z9isRA4IcKUanFBtRK38Ee4VeCv7p9Lzxnvu6beO9VFHa7o89i/tww46fjWQWxmzVEJaQdGXxxllVpZFlEpcw0gqX6jAAm6ijaW+5mEFU5fBdju6xIwxPFKgm7T+pzeYls4hkFUckaPDmswdaWkDoysGNPFFYSX8T7RZLYbVTbcbQOXo/KDKa53GlQR3J4Hx+DvCeE78vthxhH0ngbf0rix/Aziqzs9LTZxDMJops1eDOSrBTmuCOD6GZ/zssm7DZUS0xkEHAWRzKIaokp6i/YIK/EEN3mcz87r7dmE1MKKqOIyk5PnU08iyB2sgbVY4jKSBUZfE3ue2LZKTNVykud/gOSgBVPDuv46CymSnnJyw7W27fk/rytongbf2YTa0YxhbE2sdV+2s/n6bKJZxBERw6VaaqqhJTJ4KuzrErCiiKbzWQFF5WXoqX3OQJEZaZKJmGPvpUkotlL1ezhmxjbpR3P/631NVdJrNmEyihsNmGnwT6NJB5dEN6R8RokK6UkKwclBhv0vxbGniCyXoTdrm7/QX02lJdgh06ZaS53+xA2m4h6DpEU1PjL+CiMKYm3oUVhs4kpCbufqwhUyelhJfGoguiWlKqlpEgMSgTerSsI1aDOSktnZQ8IAiJ2BVHNIrxMwpu1VBWEvc3/OyuHSBRTDnNpP4f3X8+LZjo9dF/iEQVxtKTkNZ+9ElImg7+GlkOlzJRlD5doTCMI6HBEEDsNay+LqJSXlCT+Hr4sIlHM5Zo5rLJYM4mnLTk9miA8Odix12uIms8VKfzljOd9r8y0jr3Skpq1tFNWojkNZ7LbrF7vV8tNWT9iXXq9hzmeYvg6Pori7/Hn//2Uw1zO/7fv4/f/2VpqWseRKOb6h5XEIwkikkOUOXR6DJkQ/jLrrSRsJqGyh2xaa0UOKnsYYux9bt7nCmCJmtXr2EphHVdnNWWzm1SpSWURqximEL6O35L4Mv6UxPp/+G18/N+z2YQqO3mSnOseUhKPIoiuHLKZSV7WEAnhL7GuWmI6IodMDDtlJW8dgMfRWU1dUXQkkZWYvprl/H+cY/X/aP8nZzZhJTHGn5lEdr7EQ0niEQRRlUOWNaxy8EpJkRQiSURN6kpZaaek1BFDJANEARFREKsIYi6j5nUnm/BmNnlNak8OqyRsZWH+X9pswjs4U9nEU5Sb7l0QVg5KEFEj2pODJ4buzUoiO+/hVlkDgoBdKoJYx9fKJqwgvg4tikgOkSy8GYSRJMao9SXWz+WuJXHPgjhDDmtwVqWkdfmv8Wfw/5czVmL4a9TkcKQRbfe9KoRMAAgCIrLgpSSxjj1BzHVHGtiq3DR7D6sUZt/B6xNWy0xeJu8xp8GuklDTXu9WEvcqiKocvLKSbUJXMoZ/JctKeemSWYP3WXifmfd5ZiCM16YTqCoznOb4rCb2Kogvw88mphS+mbGXPVRmFdq4ow7U7Hju60NK4h4F0ZFDlDkoOXhi+JczjgQRyaHaiPak4GUNI1iqzy9a54EgXpsjglDrKiWned/LJqwsbMlpFcW8KQkoQXj9wSjTz0q+qtw0xgNK4t4EsSMHmzkoOahSkpXCevMEUckcqllDpc+gPgf1OXmfoYXgDxmVv5E1oHmPqfvZlNi38ac4PEl8Hr4oMknYOBEJolNmUiUn9fk8lCTuSRC7crCZg52h5GUMVhD/Fuu9xrQnho4czhTD0awBoEMkBlte+eSM7VJlFlMY6pIdUxQ/luUcZ1PbbTPaKzF5gogyifUz+jE0DyOJexFEFPgqcqiUlFSmEN1WSdgsJJrG6snh2hkDgoBbswa6s0Qxm77zfiSJNaNQ/6PeQZ2KMd0yU/b/ZyWhPq+bS+IeBKGCn/3QK3Kws5QiOfw7ua9KS105HG1AR5+P9/kpEAVckqjcpFBBUAnDE8V7sLSSWC/tPc9rUJmDd+tMc83+TxXRNZyGGd+EWwviTDnYzCEqIf1brFOCiM6Urja1rBTexH7a/Vefj7qfrQe4NNHf3j/J4/PnlTC8ZvZ8zMrhfbm/3uYXAtmsXmX66v+3Wl5a96fz/3jXkri1ICZnycHLGlYhKDnMsXfOQzaNtdtrGGK8Lu3n4n1eFZAHXJIoeNm/vUq2YSUxlzZgro95kpgZhRWFly1401srmcQw4w6ZJG7GLQWhgqOVwzquysErJ/17aEHY5nS1IZ1NX83KSWppx9G6necAnI33d6eCW0UYXtahhDHH81LcqyhWKdhxdqtUArIyU4W5D3O71WM3lcWtBJHJIcogqnJQYvAk0ZHD3IbuH9IQY/t5ePe9zw/gXlF/ozbIKWFU5LCuU6JYb6s8VEzp3qIDviq2bDa3UT3vppK4hSCiYKjE4E1lzeQQ3bzGdEUOKnPIapNniAEpwKNjMwXv8Wjm01wfiWKNIzP4rqLYlcEZmcMqBst6DSe7n+r+xbmHEtMcR9mDdxJcJof/jFwQ3oylTA5Z1jDE2O63ul99DOCRiWRRKTnN53misLJQDeyKIColpgo2axjm/rqfSpQvUWKKSksqBYwyh3W2kpWDFcN6PyotnSGHIcbr0n4W3mcE8CpUZBE1uJUo1qzhyC3KJLx9sKisQclijPgCf1cvNV1TEJEcbNYQnQXpzVayMvCyh6zvsJ7nsDsvWu2v/RyydQCviCeLrijG+Pk/umYRkQSyUnEkho4cVCZhUT2Jm0jilk3q7JflySHKHFTG4GUP6lyHqhy8I4shlsO5760DgJ9YKah1kSjUORRHMwj7OhaVKaxjTxDr+uprX5xrCSIKmraslJWWonMdotJS1pSuyKGSciIGgHPZFcXKzCbmczs3+/ree0Uy8OQQPWab1vO9r5ZFXEMQldLSDLxqxlK1tBRlEWv2YK+xFPUc5jZFqafaRzuO1gFAjaoobMPXHp2/m59VGYEdeweAK2vD2Y6rt/W11HtetdR0iya1V1Ky2UNVDp2ZS15TunKOw5GjC8QAcB6ZKCrZhCeKuVT/5+q5k0720JGF14+4CpcWRFZasoI4KodIDLbv0MkcbGnJ27dKeQkAzsETRSWbmLOFxoj/p9X7TdQspLPksL5etJ8XzSKuXWLKxJD1HtRlNDIxZE3pKHNQPYdhxmMgBoBb4vUjbDax3l97EvbnvJjlUSkpvYv76nsuVKlpjI+ZxMOXmFQNryKJKHuYQb5ylvQqhkgO3peERCfFREcayAHgNtiAWSk7raKwP5f9L1cazkoUmRzUTUnKZkqncylBHC0tqRPivC/9ycpK6kt/sovurdvoSYGsAeD+qJRjbMlplpuyTGHFBmQvi3gv3ipyuXqp6RoZRNaUziQRXaXV+z4HdRJcJIdqWWld2v0EgPvBKzspZhah+hIZWZZgv0+7c3szrzvGlUtNny/wmtFMgOxMaU8K2Ylw/xl6Wms2Ywk5ADw33v9sNMmkMgEleo+VSn8ia1IPMe5uxxaXLjGt9zt9h8rXhqprKkWZA3IAeE1Ub0KVnMb4fR2kt9FjbUR7GcEPM/4RPHe31HQqZ2cQOzOWoumsKnOIrrVkZy0pOaimtJKDN4OhU6cEgPsg+j/uZBkZqmk9zFLNaKpkExVOjU1nCkJ9qF7PIcoaoquzeoKIeg9KDrYhnZ0hbfcRAB6TTAbReiWZFVtKWseVqa/eOvs66j2jfdnmbEGoDKJ7jaVMDlYQqmFdbUojB4DXY0cSO///kSTenWVFDlFGcWqcOqsH4TV6sgZ1pUnt9R/sc+zU2Og7pDtyQAwAz4ea5WT7EWP82ZPwAnM2rXXtN/xo3LK+xBqz7GymU3oSZ2UQWfYQ9R2sELy+Q1Re8r4VLvvCH+QA8NpEs5jUczK82UdRScmeNFftR3gZxWlx64wMQtXovFt23kM2a8kTQSYFlT0gBwAYQx95K0momU1R6aibMXi3z7+WM36pb8qz22T3a4tLlJjWdapJHWUS3hRXW06qNKLXhrSVgjprEjkAvC5eeWbGAhuYZ8lpVmGiEpMSxffkpiThnUCnRHAXJSav3zA/wGqvofL9DuoWfSuckoTtPazbbvcJAF6LygGjGqsgraa3ZhKpng+xvq4dR/vU5uwS07ou60Wo7MHLGrLvcojOc1DN6GjbAQAmKptYM4gZ18bQEvg64lLTkSzClppOzyLOyCAq2YOd2trJGrrTWbPvkqbvAAAeR5rWUYM66lN4mYNa2qzCvvepHBFENp115yJ86tyHylVabRZROd9h3Qc7BoDXpSIJb93Ek4SasaQuxbFzCQ77vpXtDDkqCJtydbKH7PsdVknY6y51p7TSdwCADmdNYMlOkFvPj4iu3dTNImxZbItdQZydPXhiyK6z9Nf4KIYv4+N2UFoCgKNkcWLW/KMGdVZiuqss4kiTWtXlvH5EdP0l26RWS5slzLHKVKyokAMA7KCmvtp4sZ4bMae92kb1l/E7+M/49X38jnHfxPLr8rx5+zL+bFpHFxhdJbHdrN7JIHayh51rLnm9h1Ue0bfCWUEMMx4DOQBATLfUpLKHMfwruHoZRFR6iq7fVN2XErsZRJQ9ZCfFeedDrPJQ2YV3baVotlK2zQAAGdkR+Rr7ZqCemcSaRcwjf5tFrHHw2/iYSXwbf8a+7OS507KIoyWmrKxUuQ6TulyG9/3R1WsrVa/QCgDQISo1zfMS7DkS7+N37JuCsJcYWstK9v4qCRtPq5fg2CoxdQURTfVSZaaoWe31IZQs1iwiurZSdaYSogCADqofMcdj/JbGmxl7X3NgT5JTUrAnA88+xPfx8eD4bfyZRdjtVPuRoi4+leHNEVZZRFRiUpKwWYOavqoun6Ea0mp71X0AgApRLIn6seskHe9gec0mlByyKoqKwWobW3QEoT6MdZw1q6Pykv0wqpfRyJrRlJYA4BJEsSabtBMdJGfxMSqxR6X1LVHsZBArWQ9inVkUXbSvKoXP4rU9c3rbCwCwSxZfvEpKNnEnkkMUC70rVlfiYUpXEFFNXzWnPXMqa34R978sP2s/kPX9og8GKQDAJYhK7DY+2Zi4xjYv/lVmcWZT+0cwTqkKolpeUpLwprh6H0zl2kpROlXZBwCAXSqxJouJ3qQd70A5ms0ZxcRDZaYjJabOh5D1ILymdLfeRvYAANckyyIqfdmoaR31IM46eHY50qRex50GtZdBRIb06m3eSXHRtgMAHKWaRdhyeNaXzWJit1GttvfUJnW1vKQ+iCiL8D4Qz4xRM8Zuj91uAIBLEcUgdQDtSWI9TyITgycJe+B8qMy0W2LK5LDTh6jYUTV/sgwCUQDAJcjijhevdqoslf5DRRItdpvU67hSXqp8AMqMbyMWBdkDANwDlSxCxUd7EN2JlRcvM3V7EJWGjCoz2cZzZ+crjelomwEALkU1i6geSFfio5dFZHF5jDxm/kEmiE4KNZfKbpkhVU0tKi+RPQDAvZFlEZUyk5rZFPUeVMxUJaZsmyU7PYhO/0GlTypT8ORgd1jJIdpOAIBLU4lDqh/hNaxVTPQOpr24e0ofYmcW07qzXtoU9SC8DCIqK0WlpXZdDQDgQlTiZTVmdjKISsz0ts+l06T23qDSg6jYMWpMezvpZRKIAgCuiReD1NKLk17DOistZT0ItU2lGBkJ4kjzxW54Jgr7nGxaq9o+pAAA90AkCxXPVJyc9ytiiHq2h/oQ3R6E1xz20qZICtnZgN3yUrqzAAAXJIpH1TKTip3RRB4VO6N42YqP3Wmu3ri6o5793oY24E55CQDgHqiWmVQFxsbELI56B9Z2W+w4JBOESpWyW1Zm8lKpqBNPeQkAHolOmck7sPZiZVReqsToaDv/oJJBeGlJNV3yxBDJIWqyUF4CgHulUmYa5n5Uoo/iZpRBZP2HUrnJE0TW0Miyh8yI0Tr7Op4osu0EALg1KlZ5MdNWYCrxstqzzYQgH+v2IKKGSyQJu2Nd+22nSAAAN6Jboq9WYbKyfBQ3S5nDpCOIdSfXcdQ3iGRRqZ+p96xsFwDArejGq04fN8sc1LrOdv1BVRA2TcosGNXTIuNFpaVtCwIA3JAsjkWxLzvItnKoZBDrMqRbYrLLSA5ZJpH1G45kEwAA90aUNUSyqMbRSBJDLFMiQXg1f/UGHSlkGURHDO0dBgC4AlFsyspLWQZRlYX3nuq9JUoQUbCNrBdZMMoWug0WAIBHJarARDGx0muo3rJt+386PYhqiUnt2CdnfbRj3kZnOwkAcG+ouFUpOUVxs3OgPcyyFEM7PQj7BtFOVXYkKyt5YwCARyaLcyo2Vg+8K3Io0xXESkUSZ2QQ6j3tGADgXqnEraMZREUObXYEkVkpkkRlZ9TrZNsDAHBvVGJXFvuyA28vhm6XlVZ2prlmG9DNJDoZBADAM1KJn7uZgxe7UyqCiFKVqhwqmYR9fZWVAAA8Ot7R/jreiaFZTFWvH3KkxNTNINTz7GtGYwCAZ6Ia96IYWs0gtmLpkSa13QBvg7zSkbdOje3PAAA8Gl78yion3rpKWelQvDwqCLUhniTsuuw5AACvQjUuZs9Ry22sIKovXE1lMvOp161sz2kfAADABenGsKhyElVdjpaX5PZUrsXk3Y9euJoRVE0JAPBsdLID9bNejI1iZzWujzH2m9SVdXZ9JYPovi8AwKOxE/uyDKLyHu0YekYPYn1zFfgzC0b3AQBeiWpMjGLtaXH0TEGseBvvLU/dKQCAB6bbfL5Y/LyUICY0lwEAjtNpap/GWedBZM/p7ATyAIBXpBsnq/F3mzOv5rr7GpWZTAAAz0g2g+lobB3jQBzdFUR16pX6GYI+AECfSmztzGpKOXsWkxp7z0UUAAA5lXjZib9lLt2ktiAFAIB9rhpDry2IHcg2AODZeIi49giCAACAG4AgAABAcu0T5QAA4Dzu+kQ5AAB4Uq4hCLIIAIDzuXhsJYMAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAAmCAAAACYIAAAAJggAAAMk1BPHPFd4DAODVuHhsJYMAAADJpQVB9gAAcDkuGmPJIAAAQIIgAABA8giC+GdQqgKA5+Ih4tq1BXH3HwgAwB1z1Rh6piD+ccbec5EFAEBOJV524m+ZXUF4G7DuiH2Otx4AAHIqsTWKzW2OZBCVjaq8hr3Z9QAAz0oU+86IrWMciKNHS0yVN+5uKFIAgFekEx+r8jgUT29xohzZAQBAnShmPuSJcnZnstoYwgAA+EkWEzvx9RBnz2JSG6q661mzBQDgFckm90SzlU4/2N4RRCXNUTuVyWHnfQEAHo3d2NeJp6eUoyJBVNMYb0Mj43kde7vO/jwAwLMQxTwvDlYqMlHsbJWnrCCqQTnbeG+Hs/fIMpHudgIA3JJuDKsehGcH1N7jre08oweRGU7dr2QQAACvQjUuZvFVLbc56zyIrHQU7ZzaQTu2PwMA8GhkZXo1juJmpRR1KF7uNqm9Dere7GtGYwCAZ6Ia93Zja7fM9IGKINQbDnO/ssHvy/I9eJ59bbsNAACPTCXWqfi5xtCuJOx7lWJqJ4PYKSdZOVR2BhkAwKsRxcLdmBrF7BJHr+Z6JHNQmYR9j8y0dh0AwL2gYpSXLdif8+LkWZlEia4gvB2d9z0hRGLwdlK9NgDAo5NJQcVGL256cda+thqnVAWhUp91nO1YNYOIDKi2BQDgEahKQcXSSgaR9XW9cciRElN1x+wOeTvsCWOM4s4AADwI3kG2Fw+jWLpzoF1CCcKmI979ihQqt0rGoLbF22YAgFsTxSrvwPfSMTWK53Kbs2sxRY91sodoR6oW7G4jAMCtyUSRxc9uPN3JINzHjkxzXddX0qIf4nl2p9R67/2RAwA8AlHsimKfJwcbS6PyVLQdKZ0mtV3uZhA/zHi9n9kPOQDAI9KJoV589A6yOxlEK4Ye+T6Ijhh+iGW0s/+MP3c42jGkAQD3RDVWrXEzi58qhu70IFp0S0yRBSs7qTIIu87K4dAOAgDcEd4Bto2f1XiZHVx7MbuEJ4isoVEpLals4Ye5nZU2AQDcI2eU47246cXQnXgpHztysb5OaSkSRWcHK9sKAHArqnGqe4DtleerpSa7faWYmgkiemGbGnmysPbzdlDtqFdu8mp7AAD3gIpRWVkpKy9FcVRJoVKqD2PnWWdSV6Ww3r6LHVU77YnB60sgCwC4BV4s8iovKmtQmYONlTuy2IqLOxfr8zKJqii+O+PoPIm5VNswxBgA4FZkJZ0oe4jk4Imi0re121CieiZ1VseqNFuqtzW1qqZJAAD3SlaejxrSnYwh6j9U4vkHqk1q+8KVWlpWXvq+jCs7bmVht8fbZgCASxP1HNb71cxhjY1rvKzIIurdtqouuz2I+eIdG34fH3c02mlrwkpNDTEAwC3x4pLXPM4OqG28VLKoVl3a7J5JHWUS0TQtb0ejhnXWtPZKTsgCAK6BF3sqMTJrTHtSUHKIYuSWKLrTXG0w7vYeoiwia1hHO9xKmwAALkDWp416tp4csuyh0otQ26O2+QPdi/WpN6rusN2x786tWlur7CCyAIBLUo0/1V5tJS56ZaZsimv7QProeRD2ftSDiHZemTKThJr66pWbAAAuSRSLVOzKDqIrsdLrQXjxuU13FpN6rNqDiHa4uvNZH6K7/QAAu3RiY7VH242Tlfi4s/1jjHNPlKtOdfV2+JtY1yk3kUUAwC3IsoduWUnFwqxRnU1xHSMXxgd2vlFOjZUkOlbM5KDqa6eaEgCgQbeyUu3TViThxUgVF9X2luPhTpN6XbfTnZ87v97shxJ17bMmDFkEAFyLKPaouBjN6rRi8OLk7mxPtd0hXypPCl543flPYmN3soj5YXw1P68+jE/LbW7Xp2C7vccAAKpUs4fO9P9VAjvZgzfFtVplkez0IOx9ZUyv/1DJIjrNa7IIALgVneyh24yuZA9RPBxDS+FqPQgvk4iMmX0IkUU7tlTbrO4DAHSIYkone4iqJ9nBczUW2u3y9sFl91Ib9o0rPQglBs+UdpmdH7E2Z9bt8rYZAKBLNlFnjm1T2jvfQcU6Lx5WD5ijslI79u30ICxRszqb5qps+ff42X/49mv75vjzr/vf5+ySYgAAEWNJREFUx0+xff71em/jdz/Cq7PNx+hBAMBRvFKSjX//jD/PVfDEsMa+LIOolJe2ew6WIz2ISse+kkVEt6jU5J0ksmYSlf0AAMioxBQV96LJOllpKZNElj2M8VEUrdi3m0GsR+M2tfo0fh/VWzl8HnFDZmYPNouYt/kaa/Yw3+ttxPa0WQQZBQBUUAE2yh6y8pKSwt9mmU3c8crs1X5sic87PzT+nF46b3b9m1jO0pBdqnXR8m153fna8/3X7VBjtQQAyFAzIz0pvA9fCP8dP0Xw31+3/3WW/12ea8tPVhJWFtH2lzkqCLXOu705t88jl8T6uL15srLbqURhxwAAK1GwtWKwvVclhxnsq3LwJBFlEqf1IY4IYi6jIFyRQySJ7LZmKNHN23a7DgBg0i0tqZJSJod58+Tw98jl4J0Hofajxa4gxuhlEbYcFN0+m7HNHj6b1/REMcRyBOuRBABMKnJQ11jysocZ4FV2YCWx3veyh8rlh27Wgxijn0VkGYUSgXrOp/GnJKJMwtsGu51jIAgA8FFH5VYSa9BeZyitcvh7fJSBHUcZhNeoPj17GOOYIMbwg2y1F6Ga11E24f1sRQ5q+9Z1dgwAr4l35G2l4J3vpbKHtbRkM4X/GTpzmIKILrmhzp4+JXsY4xxBzGXWHK6UmqwEKr2IqMwUZQx2++06AHg9qn2H6AJ8M5CvR/9eWcne1l5EVlqKrkln92WLo4IYIz9Kj3oSKhPwxPFpaGlkPQ/6EQBQYbfvsJ4prTKHVRKrCGzmEGUP2TkQagquut/iTEGM8THIRllEVQ7VjCErM2Vjtf0A8Bp4cljXRX0He86Dyh5UIzqSg+07dK5ofQpnCWIuO1lEVxifnLGSxNuv95/LdZuibVVLAHgdbJD1ykprkJ7BOyotRY3pbNZSp/dg9+MQZwhijHoWsa7z5BCJwJNDpffgPaa2ze4bADwnKpBaOdgjdVtWsuc8RH0HTwxR38GWl7JrL0X71uJMQcxlFHQr2UQmBCuDTBI26FcyBiQB8Px4U1fXcXTp7uiEuOhkOK+sVD0xzvtyIG+/tjlLEGPkWcSRUlPlvn2tdTuqGUMkBiQB8DxEPQdvxpK9Oqu9Kmt31lJ2OY3OJTW8fTrE2YJYl3b9HFf7FF5vwcsYvP5DllGobfT2B0kAPD5VOVS+EW6VQ3QynFdWyi7Mt3N579M4UxBj6KDvPWafl8nByzIq5aVIAHa9eg4lJ4DHx5sCWpGD97XJdtaSyhr+xywjMXilJU8M0f4c5mxBjKGP0O36SqmpIwjvZ7slJftctYx+FgDuk6ocousrZWdKr+c6RNnDGWdMX+zkuJVLCWIuVaDO+gGeNCriqNzW9/TGngyQBMDjEclhHWdy8L7kzJvSumYM69g+z8seIjlk+3gKlxDEGHEWoZ5TDe5ZttERQiaJbP+i+wBwezolpehch+y7HaLrLKnS0iqKTmnpIldsjbikINalt35XDFVR2PeIti8L+lnJyVsHANclO7dhLr2zoztyiC7f7YmhKodqaeki2cMYlxPEGHmAzmr9kUTm+jNKS1UxeOvIJgDuBy9rmOOo5/DPiKeyRtdYiqazTlHYLwXalYPav4cqMU28UpP3nLMyDO+11mU0tusqMkEUALcjE4NdRj2H9fIZna8M7Talo+stqSm2VystTa4hiHVpH7MisD9TXX+ktJRte/Z4VTIAcD5ZwzbrN8yllzlUL6GRiaFyrSUlh5uUliaXFsQYfiBXzxnicU8k2WtXju6rQb77GKIAuCwdMczlTuagToKrikFdZ8mb0qqu1LpKwtvXi0ri2oKIHrfPzaQR/Uy1v1Chk210+xcA0KMyxTPKGo5mDuos6ehEuK4cqtnDVbiGIMbIS03rODraz7KCTjO6ijoqqZafvPtHtgfgFemKYS7VFNYdOWRnSWezlaKT4bpTWp+qxDSp9iOin/EE0hVCJThHTaDqLwZRABzjDDF401jtN8Fl3wgXNaRtFqEuxBedKa2u1BpdtfUqmcQ1BTFGXA6yz6uUizplqx2qkvjkPMfbBkQBEHNEDHNsp7B6cuh8XagVhHe2tDrXoTtjye7zVeUwxm0FsS7Xx6vrvNeOnjPxPmhvhkD3F3JEFNF6gGfG+7/piiFrRlfKSd3prOpSGlH2UPn60KsLwXJtQYxxfKppNgMqeh0v6Hd/EbslJ7s93v3qYwCPTvS/UxHDXFZKSt5F97KprOry3F7/IbrGUvTtcNXLeD9lk9pSbVpHP7v781mGUDk6GcH96D0VyAJejR0prGMvY/CyhUgIapZSdJ5D5Tsesi//8WYu3bwpbbm1IOw4e7wbIKt/bN5zPTF4r++t8x47KjuEAY9AFtiy/6OKGLKSUvT1oJ3LdWdZQ7XvoKa0Rk3pm3ArQYxRO8+hI4fK0XuUos5lNY1VrxllF2qbzsosdp4HcAnOKtNW/w+9L/axDehvI88c7KW4o3McvH7D2nNQpaXKuQ7qM7mJKG4piDFq01h3qYrBS+m82zDP8V5PPc/bPsulm9lIBHbYDVLV0msna1DnNCg5rAF6Ddqdi+1Vr60UXYCvckJc5XO5KrcWxBi9M627qEBd+cOrPM+Tgvcc9Vy7nSqz6JaeCP5wSzol1nVddnCmmrmV5rPKGtbLZtjzG6rTWL0L73XkEB2EvnyJaeVsSURHIlEgV7+09SjFe05VHHbbsu31nq/ofEZIBHboBKtK1tzJ7FdJ2DOgs++L9uQQzVKqnCHtfadDVQ53NWNJcW+CsGPvORHqw/XKPtEfovoFVuTQlYWSg9qX6HkVkAKcSfY36P0tz7H3v2DPJPak4J3o1p2pFGUPWb8hyxqOyOEuuBdBjHFcEtlRuArWXsBXv0R1Vub6R5zJpiIRtT/ZUdZw7gNcEu9vLfq77ByIrVLwsgZPDqrHoKTQvSKrV1rKsoYdOdzF//I9CWKMfUl4H2x0JJ8Fck8A3h9zRThq3bpdahvtfmWZiPrZaN8BIip/N5X/s+h/w7sUhsoYIjl4Tejo3AYve/Ce450At54hvc5Welg5jDHGl1tvgOGf8edZz+oM6Pfx86tG383PeWPvDzKqZXop6/cxxl+/ll/N7fv4+Xmut8/m9vbr9vnXvr0tt0+j9t3aI1hGY0t2/Sjv+fAcdINQ9Pzo/89bVmRiZ/oocVT7D9F5D1YiNuuwQuiWlKLzHKLP7+bcmyDG8MWw8j7ygBVlCp2ZEOqP7+v4LYp5+/JrfUUSqyw8QWSyiJbROFoXgSCeizMEsSOGuYwyDCWITnPaO+ehIgglBdWErpaUqmdJ2/FdcI+CGENnEurDe1+eE/3xdeWgUtd1XMkivo6fIlCS8ETxSSzteIhxtLRjdV+BEF6LSnBSpSU77mQNWY+vmumr8x28zGGOPQlkGUMla1gvvvewchjjfgUxRk8SazDL5OD98a1/gF55aZXDHFtJzCzi29CZxBx7mUQmi242sXvZEgTxWmQB6ki2MJdRKck7gLOCWANyp6zkXa3VyxS8qauq19DJGh5GDmPctyDGqEtijDyb8KbPRdlE9Af416/lLDetcljHUwheySmSRCSIt1/7eFZWYUEQr8WOIKrZwhjxRA3v/7FT/rVB3B75q+AfCeESWcNDyWGM+xfEGLkk5rrZuLbZxFxWs4mstqkyiCkKm0XYnsRnsXwTy2rZaYyP4hiFpR2Pwnp4DbyAtSOINShWy0k2Y7CZgzd7ycseVAZREUIla7AVCLWP6+fhfY53yyMIYoxaJjHlYGc4zZ+pZBOZIGafwWYQXhbxRYy7fQlPEmeVndR9bx08LypY2XVnl5MyOXj9Bq836GUPVhKREKwUKjOUsplKDymHMR5HEGP4krCyeDfPy247glizBpVFfBFLb3bTOvayiUwQqok9gnXr0o6jdfC8ZILolJO8A7FIECprqPYcoizCE4USgieFSq9BlZXU52XHd80jCWKM3x+sJ4eVqigiQXwZvijmTZWXoixC9SNsuSk6ZyKTxVjGuxmFtw6el0gQnYxhvZ9J4Z8RnxSn5DDHUfZQvSnBeFKonttgPwv1eT0MjyaIiZWD15ewATCSw/v4GYyVML6Mj0ctnhCiHsQ69TUqN0V9iZ1yE4KAjF1BHC0reZmDV1ayU1o9QShhRJlCdk7DKge1T1FG5X2+d8+jCmIMv+RkWTMJK4q3oUVh/1Dn+Q3reBWFnbmUlZd2+hFzvFNuQhCQcZYgqmUlmzlU+w6dMpOXIdimc1RKqojhaUpKlkcWxBi+JKIm9iqGSBQzm/jxa7xmE1MQ83yHtdRkM4aKHCpnXKueREcQ9CJAcbT3UBWE13OoZg/Z+UmRMLJMIRNDtZz0VHIY4/EFMUatL7GWnD6Z51tRqLLTKogphjW4r7KIMoYse/gyPvYhoiyiWmqKsonhrLOPwXNSyRzsuqislPUcMjm8j48Bu5JFROLIMoXK7CQlCPt5eJ/dw/IMgphkfYmVmU1YSbwPnU2sWcRcrqUmJQ0lA08O3T7EkWs4dTII5PAaqAMqO+72Hbyew07/wZOEkob3nChTsNthpfZSWcPKMwlijFpfwmYTqyTW8SqKmVlYUaySsAHfKyNFZ1TvlJl2exGeGMgiXodqeWmOI0nsTGnN+g9KGF7Q98pGlaZzp5xk9z/6zB6eZxPEGDqD8LKJVRbr82zZaQrCisLKwpaLsnFVDl4G0ZnR1G1UI4XXwssiomW1vORlEVkGETWto3FUPvLKSFE5aYix/cyeSgyTZw8C0VGyauKuN9UQtjcbzG2Ar8pAvY7KGo6UmKp9CDuG1yE7Ku70HyolJnUk35HFKgf1M/Y1PSFk5SS779Fn9VS8SiCIGrKRKNTR+TpWgTwSRuV+t/dQlUMli7DjjFf5+3l0OgEs6z/MZXSzktjpRdiAn933XiPqLVTLSWppx0/Jq/2DZzN4PFl4R+peVpFJI5NBNWuolJWqkrDjiFf7u3kWqgEtk0T15gXlajYRSSOTQaV8pMQwxNj7LJ6eV/xHz8oqFVEoSShp2EDfvX9G32GnxBStg+fD68/ZcaXEtNuP8ESxc1+9j5fhdMTgfVZPyysHgGrZaS6rJagou9i9eRnDbubQ6T288t/IK1CVwxwfzSQ6GcXOLRJTt4z0smKY8M+fl53sMhKFEoeXYSiRRM9RJa4jcrC/e+TwumSSWO8flURFFEoc2XOUCHbF4K17OQgAP6mUneyycstKQpWy0VE5DDG2+6nue+vg+egKYi67ooj6AFk5qvLcys3bF7XfLy2HMQgAlkrpRUnC3o8yjGzsZSNZ1uJtyxDjbB9HYT08B14QzIKmJwh7Pzua9476lUyicSQDJYfq+KXhn18TBU4vm/DGneDeLRu9Oe+ltkUt1f5l6+E56Yiik02M0TvC78gkEoIaq/1EDAEEgZioDJMF306G0S0VVbOGaKn2z9tXeH6i4FiVxFxm2UT2WLdcVCkfRSJADA4EgTrd8pNdekFeratKRr12ZWnHFv4uXpMzJTGXUWZREUb2s9H7V8fgQCDoUyk/reNuSUqN13XqOdn7Zduq4G/jtcgCpnfUXQ3SlSP+7jh6P2/bEUMDgsA+WcDdCd7VspV6LPq5yvYq+Pt4DSpBsxJ0o2DdCfLdZbZ96j4UIACcw44s1nE3yFcey947WgcwUYG1EpiPCKTyWtF7e/ehCcHhXCoBuCsPb9wRgfd75vcPFbxA2ynl7PYHdiSAGE6CAHE5qkfrHYHY+7vvka0HWKkKorKuG/B33gNOggBxHToB+uhzkQFcgzOlceZz4UQIGrdhJ4gfmXXE7xkuQRSgu7OiKo8hhCtD4LgPzphyuvO75PcPFXYC887MqDPeF07k8603ACTdwE2gh0uyG6i7P4cQ7gwCy2Nx5u+L3z10ODN4I4IHgSDxPPC7hHsCCTwBBJXXhd89dCDgAwAAAAAAAAAAQJf/AwA13Io0XhFsAAAAAElFTkSuQmCC"/></pattern><linearGradient x1="0.5002439022064209" y1="0.004390243906527758" x2="0.5002439022064209" y2="1.0043902397155762" id="master_svg2_9_11870"><stop offset="0%" stop-color="#5CD5FF" stop-opacity="1"/><stop offset="100%" stop-color="#2B58FF" stop-opacity="1"/></linearGradient><pattern x="1.9998979568481445" y="2.0000064373016357" width="20" height="20" patternUnits="userSpaceOnUse" id="master_svg3_10_07464"><image x="0" y="0" width="326" height="326" transform="scale(0.06134969325153374,0.06134969325153374)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUYAAAFGCAYAAAAW1zbwAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAACAASURBVHic7Z3bcuM4sgDLl56Z/f+P3T3dbvs89CBcLtcNICWRUmYEAxBFSwQtpKsAUBYBAAAAAAAAgAmebn0C4MLv5bH4uPUJwFfogNeDaw17gESvAJ11f/a4pvxeHos9ZIcwd4QOuI3u9Vu5zvxuHoMVoXV/BlkuQuebI7te1bWcvdb8bh6DWXlVx2fPI8omdL6c6PrM7t/yHDweq3KLnpvd//DQIb/jXZPVfVteCx4XT1idfas/F+17WOiQn1RSm3kc1TuPq/1wX3SjuexxVN/j8UPy6J1vD9k9Te7L6tm5wH3SEWNV7+7L6p3HD8Ojdr5uRNeR3mpZnUe0D+6HKqXNhLdaVvuq83gIHq3jrUSAXlnt2yJL77Hl0X5vZ2d2JnlFelE92+eV3fpd8wgdbCYinBFe9Dg7Jnvt7Jy7z8FxmZlN7grNE2K0z3u9VVl6j++Ke+5knXR5RoDV/mizx3vvUZ1vtR/Owcx4YiazSIbZFh0fvYd3Ltn53hX32tG643lbpfc8eTxyfFz2lGJ3e5883nuf6By9870b7q2TraTJswLs1LN93nt752fr2T44Pp48OlLMpOWJ732yPiPMrIzaeErupZN1I0Nd7wowK6PnViLK7NyrNsNxqSLFSI4rEeG7U3r7vLIjTHHqXjtPL8h76FyVVCohWhlG4ntO9lWirATpnatti9dmOAcz0WJHjpnkbN17nB3fkaR3rl5bTsvrrU9gA920eUWGW7dIlN77S1K37cz2wXHpiDGTYxYZRuJb3cZrPSXvn0XBT6qM2n54zijGLG3uCrEjwpdGPdoXRZSdsUfbFtvObB8cj1kp6n3Z+GAWEf6W78L73ahHonySWJC2fVaKpxTk2cRYRYnV+GEkxBfxBfgS1KOf6USRkRzFqds2e9cBjk8mxyqNrqQYbb+T0qt7x45NR4FViq3b96T2PznHHJaziHElSqyiQ09wth5tkSwzUXbHHCUpZ64TXJ9ux/ekOMrumGInIvQkGG36mBfxJTk+o/ZcsnaeMno8gxhXosQqVY4k9yq+CKP9lSRn5Ri10V6HCgR5XWY6eibFUc5KcVaGb439Q47P8lWOWpK6vKvo8ehijKToiTGLEL3o0MruNShHPZNjV4xRSm3bYtvrXQ84H9nsrZXKbArdjQzf5KsA31T5Kt+l+SZ/PqP2PcZn1coxiiBPJcejirFKnasxRCunKAp8TerZ41U5dtJpSUrvmsDx8SKoqNySRldC1GKsHmspjtcY9Sfn/cc+rx263adIrY8oxtnUORJilia/bty8SLOTUq9OwNh6tg+OQ2dGepSrEy9RCu1FfrPb+DzbCPNZvkePQ4pamtl1OXT0eDQxdqVo5ZLNJEdR3w+1z6v/kFyMUeToTcZYgW+dfEGI52JLxOhJ8UPyyZYqUtTbL1N69Rf5KkUtxyf13iJfhajPX+97koPL8UhizMYTx+NqHDGaNIkE+KNRr6LGbsTYSaNnxheR4zmIpKjrW2alOxFjR4q6/ipfpTiO159nGz2Oz68df9Rt00t/xr5DyvEoYqyk6KXOkRS9scFIfnbznpuJGr2JnkiKURqdldE1g+OSpdOdyNGTopZjtE6xGy3qze4bn/Xx3It8laWOHvVn2cpR/i2fnetxSDkeQYxdKdoosUqZbVocbX8Vz9vXimauu2OLnhht273Su15wHmbS6VF2xJil029OadPkaPspX/vSEKKW4/h8v8n3/jrkaNvsjT0eTo63FuOMFLtRYibDv5y6Lb0IMhJjNMY4I0XE+BisinFWjtU4ox1T9IQ4okUrSP05/yXfP+f2sz3GHb3o0bs+h5HjLcVopZhNsmRjiVHK7AnQ1is5RuOM+r3t2OLeS3QQ432wRYyzS3dG9JiNM3pi/Cl/Pu+6fFVlJwCIokfvemRrHkVuKMdbiXFFijpV9cYRKyFmW5ZSz44tdpfn2PaKU9q69xjOweokjH68snwnG2u00aInxbH9lP5n3vvDL6Y+xhy9GWt9LW4ix1uIsStFLZYsStSRXSTDv519lRy9aHHruKInwhkpRvvg+MysaRxlFD1uHW+MosZIitk63iqd1p9rGzmO9h1OjtcWY9Tpu+OJnbTZytCWniyjNHq8RzThYqPZrctyovQ52gfnY+ssdUeQdo2jNxEzIkQtRh0xZhlTJsZO5CjydcxR5LscxzE3keM1xehJ0V64rhRnhfi3fBWhlaQWo41Cu1L0PhRZpNgpq+sI5yHr1B0xjtITo5biqFdy/CGfEeOrevyqyixajJamRZ/5DnbM8WYTMrdMpbtSjGacbdqs5fe3s9ljrBhn/kpeInWuUujOc3BcOmLU9b1T69/y57OsJTkWcmspZmLs9oNqfDH7DFdyvArXEqMnAStFK0hPil6UmMnwbxH5R3xxVjPR2bKcziSL107vWmR1D8R4TqqO7clR1yMpivQnZfQ2pDjS6miSsdsHOpOMVfvHz2ZyvIokryHGSopexJhJMUqb/5HvQowixyha7I6nvJhz7nwgZv6CzsgPUR6Tmc7bmbEe9SyCjFLr8f2KVpBDjuNOFvv51zPRM5OO1fhidg3GbYPe81eT46XF6HX4Soh29rkTJf4TlLoejS16YtQfhOgD0PkgVJGi9zjaF4EYj8kWMXr7Oqn1s6prOT6r+ot8nbUen3X7jTpRlNiJGL3P/UzbReJF4IOLyvHaqbR+nEnRm2SxY4meFDNBejPRW6SYRYm2XI0Okd55mYmSoggpemylaMshxWf5Kkgrx9HfKiHOrtedjRYjhhyvJsTBJcW4JYXuSNGK8B9nXyeFzsYUu7POun1e27N6tg/um0yIT2bfU1C35aiPKPFD1fX447Mqn+Xzi2htZGhFOJs9zWCF7/Wjq6TUlxJjR4pVtKhnnyMpRlsULWbrFcd7e8sQPClmacNKhIgYIUILYEaQT6qu5WhlqD/rVpCVFLNosSIaM9Vt8cYcLy7Ha0WMkRC9SNGLFiMp/kdiMXpLdar0OZPi1igx2zfzPNwnWVrtYWXpyUJLZwgmihRHab930fZTT4QrYoxE6D0ncuVlPJcQY5Y+2ovpTbbYSFFHjJEUdd2LFrMZ6NmlONV4YnQtOvvhcck+Ex/F8+Pno0jKylIf8ySfohxfFRaJ0WZP2aRL1hZPit4yJH3uNjr2/jDsxt5ijKKmKlrMxha9aPE/0osYvRQ6GlOMokT7ixen7l2Dal8E0nxMso7tpZJ2vx2Ts3K0YhwRpI4ibR+1/WAmdfY+x17q3NkGOq2OouVduHQqHW2zUswmWrQgo+U5s5HirBC7keLsMfA4RJ8Hr7NHY27R407araNHL02OVmJE/UOfezdKzLZIwIdPpbMIyosYZyJFT4he1BjNQnel6H0QdBuqdlbXBmCWKPKKjsnS7ij91Pu6m/femdxXIkUrVG/CSbdlt6jxkql0JcTZscVqNtre/rdFitFfQ13aNkfXAmBvvKjMPpdN5miBPIufXs9KMorkItHpdZXePr3fvqadqT5sKm3/amTpsxct6ogxuu85E6JNoSMpemOK+ty2ChEZwrWJJDkjSDv2qI+PUtjqPDIxWvFlUszSas2uEzF7iHHvFNpGi911i9lkS7QkZ2Ztom1vtQ/g2kRppt5XfVZHf/AEOcqsj1gpVdGit3XHHL227hI97h0xZlFiJcdMip4gs7WKVopZpGhTaNse20av3QBHoitILRgdPY7lOyJ5n/DoRIor27N5LZELptRbxeiJI0ulV++Hzr4tR4uxkmJnTDFqV9RugKNSCTL6HA8J6Z/tfOajWefon3ZFX42WRZHeOKhuzy4p9Z6ptK5naXQ0rhjd+hd9KUR2D3Qlxc4ki617jwHOQJZ26rr9fD/Lmly8SLETMXakqCPH0W93laLINjF2osVoJrqSY/bFs53lOB0pRstxbNu8xwBnJBpv9KQ45KLT6owoddal/roz78tzva0af7xI1HjJVHr2DpcqarSLtr3F29GynOwWJnvuWRsB7gErjEyQs1FjNrZoRTcrxWi8cfeocVWMVojZNivHaFLFRorZ/2nZQ4oIEe6Zzqyu7gMrUWOWMkfb+MJcu398h+Tox9FYoz4X3aYp9kql9b4sWvSkGEWK0X/0W7mjZUaKCBEeiWy2ekaO2dKaSIieAL19Wo5V1GjbdtNU2kaI2Sx0Z3wx+udV3W/Jib4VJJto8R4DPAo2DY2wcsyW59ioMRpbfEu2V3VcNSETjTVOsyLGSCYzcszGFz1BVv+4Kvv69c7ss/cY4NHwxh6jiRkryBeppWjFmAkxS6nHa47zyGaovXaVvMwcrN5Ey8V+LZG3NCcaS6zuaLGLu70vnNVfIzabQtv2ADw60QqN7nCTltCHqYt8jfhWFnrrWW67aWbWX35jVowry3KyscTOt3FrQXb+X8uWZTkA8Ieon1R1G7F1xh47axmtFLUcB1bCUXtKVsRYLcuposWZL56N7m6p/qufFmI0c4UUAXJWokSR74KykoyiRrvOMRNktNlzqM7dZVWM0XIcuySnEy16UvyPOiZbpuPdB92dbEGMAPOsjM13F357cvQmXbKUehdmxBhNslR3t2Rji1aKUcTYueUvixb1+ds6AMRU4436OU9Mq7PW3QjSSjGKGqPzdpmdlc7GF6wwq9loLUzv35rqMcQtS3Ky8waAGruUx05sjHLMVA9RDQ+8y6cHfsufPv0mvgt+qVI/p5fvvMmnB8Y/8Ir6/dJC764Yo1ncblpdydETpZXibNpsz9t7DAA9siUw3ryDFeOrfF2qo+XoidBuv6QOjuzdMHZto9cOl613vkRjjl5aHX15hI0WX009E2L29WFZ2A8A61jp6P1ailaQOmoc/fxNvkrRStI6wLvDzYsatRyn6dz/qBsd1atJmEyKVoZVlNj9TsXsnAFgnpmhNO0E3Xe9u+AyF1RyjIbTqnNO6Yixm0ZXctQXwbswXrly/7M9Z+8xAKyR9a3usJodWov6fuSMjgs8V0Vt+MZMxKjJhGgvQCTHapJl5VtySKEBrkfW97rzDpEkO7f/Rn6IMsg2XTF6tl2JFqMtS5+744qdcweA7VT9LUqps0nZzAXe1o0a7fm2fFCJMUujRxnd+ZJFjNVF8L4UYtSzUJloEeC6dKLG4QmvT29xQ7V0zzs/e94uK6l0NPuzMgETNTqKGJ/E/8uQnSsA7M9M1OhNxnh9vTO2ODvGuJROr0y+6HoUNncixuzCROMGjC0CHI/uWGM0H9FxQhUxen7I3JUyM8YYhchVo6OIsTNuUA2qEi0C3I5u1OhllLafd/2QzT9EcozS6ZBMjFsanaXT9gJ44XGn0fY8qnMGgMtRRY1Z8FQNu3kOiXyzS/A0O8bohaediZdoTMF73JmFThtVPAcA+9Hph5kcPWd0HNFxhj6PKSesTL7oN+pOvnQEuTKYOjVuAAAXxeuPWR+eFeSqL6ZZWa6zRYg2dR6l93PZ9HsWOSJIgOsS9UGvr2au0PsiV2wRZDuQ6s5Key/SHWfsGN8+7jTMngsA3J6sj1aBVeSFjgy744utKDISYzVuEDUuaqStRxei29io4QgS4DZ4fXEmy4wmZbQzsglaOw/RTafd52bGGG1IPBMxRva3x2QNDBsBAIcncocXUGURoz2mO8Y4Nd64MvnijTt6M8iRHLO/DJEcxSm98wGA25ONOY7Sk2LmhUyKnoPa44keXTFGDfOiu6ixHSF2rK9L7xwB4DZk/XI12+wMtUUO6rrjG7OptNdAXbcn2jW+Z/4VOQLAcehIMcs0K3d4zon8pMuSTIzZwGWUTleRYhUhRmOLUaOQI8Ax6XojyzxnPdJNozO3iYgvxkw2URjcDY09IXbS6Mr4CBLgGFR9tOuMWY90tvY5z4wxzoTFtmFRvRpT9E66aiQAHAevv2aRY+SHyiPd4beWO2bGGO0bZI2yDcvGEKu/AlMNAoDD4vXpygFdj3Sk2GZWjJqOHGcixuj1o32IEuDYVP012jcTMXakOM2KGLtpdSd67DSsahyCBDgWnT57DXfY92ozI0b7BlGoWp20Fz5XJ08qDXB+uv18ZXJFkrLz3l/oiNF7wVUpVhL0GgsA90mnv6+mz1E63XLLaiodlTPpcfS8fa9l6wPAIej24y3umJFjyZbJl+wEOvLrXBgAuF86gVF07O4y1GwVo3cikRztvugYAHhMVp2xqxRFvoux+8LZiXn77XOdvxDZ+ex2AQDgIsz23W5q7b1Ox0VT59m5Vzp6nL2wZ/jsPaq/EABwP2zJIDO3ZM7o+kxEtk2+VPvs/k7EOPu+AHAeVvp8FTF23mPaHXuMMeo3z0La6mcYZwR4XLou2JI2t9lTjJoovY6eAwCwZM64qEcuJUbN1RoDAHdHJsWLsdc6xr2Omz0WAM7PJfywySN7frvO6mt0ZqYB4L6oZqS3OkVkgz9WxTgzMGp/BtkBwAwdp8zMUpfsPSvt1aNjESQAZHQ8cZGxx2tMvmiQIQCscFV3XFuMKxBdAtwPp+jPZxAjAMBVQYwAAIZLi/HwITMAnJKLuoWIEQDAcO1bAgEAtnL4WwIBAO4OxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYECMAAAGxAgAYLiGGD+u8B4A8Dhc3ClEjAAAhkuLkWgRAC7BRd1CxAgAYECMAACGM4jxQ0jJAe6FU/Tna4vx8BcEAA7JVd2xpxg/gnp0LJIEgIyOJ2a802ZVjNEJ6IbYY6L9AAAZHadkTppmS8TYOanOa9jN7geA+yPr83s4RWSDP7am0p03nm0kMgR4LGb90PXOMtde4E06DQAzVGn0RbiUGD2r2waSNgOAxkuvvdIevzt7z0pHQuwOjCJHgMek64LMMTedlfbevCO+rYOrSBPg3Kz0+cgZM7PQ0+7IxOidSPam0bFVxFjNSCNEgPsi6+tV4JS5JXNG12ci8l2MXRllYwGR1DoRY3eyBmkCHJvZvpvJLIsYuy6aOs89xhg7kyozfyEuNqAKAIej64PqGK9cZq91jJUUI+Nn4wadcBgAjk8nQ+y4IXPKrnJcnXypQtfuZl8zqwPAfdDt76tOmU2nv9ERo/eGYh6vNCBrkFdHkADnppMhXsIl3uunzESM2RvpN4y2d1W+N44HgPun4w3tjtmI0b5Xiy2ptHcClRRnZOjtj/7CAMBx6GaAWZ9fcYn33kuB1p7frpNFiNr83cjRvhcCBDg3MzL0XOE5pSPJaWbF6L3xTIM863uN897LngMAHJ9ONphFhZ47ugGW914tumL0UtpOyOsJ0m7dxgHA+VkJqmadEWWfbUF6Ysx+sLK8F+J6jYrC4XfxG1M1CnECHIOsj3qBThYlznqkyj7b59y5V9p7wcr6mfF/J8d0rJ82CAAOQSXILGK0QdZv57nObHV0HmV6vbJcxyuzcYBIjr+Ln8siR5GkUQBwCLI+m/V5LcRMitn8RfX+KTNjjLasbJ9Fi54gswmaTgMRJcBtqbLLUUZ9PPJCFTVWWad3Hilbvo+xEw7rBv42+6qGdhuGEAGORdRHIzlWmWXkkM4wnHc+JbOpdBU5dhr42+z3/hp8yPcG2/fVJQAci6zP2v7tRYbWE52AqooUN6fS2Qt0IsVu1JiFyNH7kE4DHI8qjZ7xRuaJWTlWQnSfm/0SCW9/1rjM+rbRXmOryDFtHABcnSyNziJFT4SRLypBZkJsRY6VGD9MvbNVafRb0Vh74aqxRiQJcFs6Y4qj1J7QvsiCqMwZnQzTE2XqidV7pbvRYmd7Uw3PwuNMkmVDAeDieP0xk6HnDe2D7jYbNZas3iut651o0Tb2zdkXzUB1pOidJwBcnk4/jOSYpc2eI+zjTtQosiDI6s4XXe/8Naiixpm/Bl6DvbHGriwB4HJkfdL23dnssgqiskix47FvdCdf7AvPjitmfw2y6LH7F6E6bwDYn6r/rcw/dLywOt7YOW8R2f59jDMNjxptQ2WbTnvR4yjteYggRIBrk/VFb1zR6+PRUFsmyS2BU8rWf4ZlG64vQKeRY/slfuPtjJU33kjUCHB9ZqJFb1wxcoR1QSVIL2CacYTLynKdquFZKp1JcZTdQVaiRoDbMxstRpOyngu6KXW2esWenz1vl9kvkfDqNo2u/iKMho9tJrXu/EWwDUaSAPuS9bFu0FSlzpkjoowyWqYzNb4oss86xtmxRa+hv4J6Nt4YRY36HL06AKxTBUmjHgnRC5ii/p/tmxlrnGZ1VlrXI0FmafQv+f4XwdZtmK0vahQ1klIDXIfMAzZa1H3XDpdF/T+KGDvL+jal0SLr/1fak2VHilnjs0FXeyGivxLR+XqPAWCOTh/zssfuCpXICdYPHTl659h2wGv3QIfsr0Q20BpdAL29qu1NRF7+3X7LH5k///vaz877D57UeXp1AOjTmWeIXNDNHKMtG1/srl2c4mXi2Cf5KpUns19vz8H2okq92ee8cmz6Pbzz8M5bxD93AKjxpNiR4bvEIvw/Efn5b/l/IvI/p/yfev6n2qII0ssgp9NokfmIMYq+vIuj/0K8SHyBforID1O+ymfk+Eu+S1RL8l2VovZ75wwA28lS6G6kqD3wMyg7K1e6K1SmoseZiFHke2QoQX1EdDp6tNGitz+KNK0MnyU+DxshevtsHQB8OnMLXkCkhWgDIRsp6ujQll6kqNc827HGLI1uy3FVjN6+aMsk50nRiw5f5LsQrRwjWevzFEGOAF26KXS2XM9KcaTRdvPkqLduGr3LOOOKGEc5EzVGgvTSY++x/fnoPbxoMTp/uw8APulIMbuzxQ6b6Ujxp3wfS7SRoyfFIcbZaHFajrNiFJmbhPGk6KXXkRi957NosZK1PV/bBgCIpaj3RXL0xhN/ms1LozM5RmOOUbQo8l2QFx1jFInT1S1RY7Rf/0z0WlaI4tQjKUYRJcAjEkVaXsSY3emmxxY9Iep0+b/iS9GOMc6MLS4LcbAiRpF6oiOKGr1JmZmtihajc7Dn6JUSPAZ4BLpStBKK1itHKfSWaDFbz2ijxaxtJVvFKPJVJFXUOCvFaMKlkqQ+n5nS/hzAIzArxe5tv1XqHO3zJlyyu168aHF5cbfINjGOciZq7Iiy8ziSoj4P71yz56vnAO6NLLKyklmVok2hvUXc3mx0tERnJlq8yp0vlm7UqPdlUV8kyyhqrNJoe672PL32eMcgR7hHZsYTo7Q5Sp870eKMFL3F3dk36dxsjFGkFzXqehY9zsiyGmfsRo7VcwgS7pEqShxlNPPc+dasaLJlRoqddYu7C3GwRYwiddTYTak9SWb7KhmupM3ecZlEAc5EdidIZ0zxQ+YixSha/K8po3WLMyn0oVJpkb6AstS6SpG7UaJNoTvps3dcJ3rsvC7AEahujfPW/dnb/LJ7nztSHKW3NEfLMYsWZ76UdlO0KLJdjCL5+N5Kap0J8zl4HTH7vPe3+2y9al90PIKEIzIjxFF644kjUsyW5ETpc5RCW0F2b/2LhOi18aap9MAKyds/K8RONBml05kIowuWCTWLiLN9ANemEqJ+7N0p4t3m1xlTjNYp6nq0mHuP+6F3G18U2VeMo8xElZUrm/ca3utX592lI8iV1wXYQiSCLTPP2ZdNz6TPMwu5s3WLVaSYXYdp9hKjSB41esdEKXFV74i3S/RX5snZJ87z0ePucwCrZBLoCnHUvUmW6N7n1dnnlTWLM9/W3bkubfYWoy6j/ZHs7ONMgivRYUTnQmbHzEiy8zyAR/U5nVmGo+te+hzd++xJsVqrmI0ndm776/77gt2iRZF9xSgSC0/EF5z3XHTsTITYkU+2VEGX3s9477Nl3BFZgqbbyVdmnLO0eWaNYpU+V+OJWfrckaLX5kOm0oMopbbH2PqMHO3PeXgXr7qA2V9db/9MJBntA+gyO7FiyypKrJbkVLf5VdFitDQn+oKI7vKc6Noscykx6tI+l8mtiiSj97JkyxK8fZE0Z6LH7LxIr2GGS6fNkQyz/8uUfX3Ylmix818Ar5ZCDy4hRpFcdPa4amyy2ucR/SWxde/Dk/1cV6DdXxZChIxOZhNFhFnKrDc7htiZdZ6dfc4ixc5kSzQbfTE5XkOMo6wiwUqg0XOazrhhJsTsL1I3eozEeZG/bHDXZMNB+vlMjlWEuCLFrgi9GehOtHiRL5+d4VJiFJmbLe5K0dKN8DIhdp73XleS56NjvOO994HHJBNB9bnNbuOzpSfESorR/2nx7n2OhBjdB52NKVa3/Z0qlR5U443dn8+ookNd32uLXn/1nMTZF70vnJfu77fzGbRrDyMhRrPN+t8PeFIc/81vdub5f87xWq7ZV4l1/+PfRaUo8ucf2l+SD/kjN10O3uXPrX7v/z7upsv6taMPjLcMIVuO8OPfTT/3In+uz4t63P2GcZGvwwXeH4jZ9s4cB8ek25E7Wcgodd1K0usPVeT4S/pjjFaA0eaNw4CtNQAABwpJREFUKWZ3t3jSv5oURS4vRs2Q46jbUgvyd/E6XSlGfymjx6//bj/kqxC9/3WdfY9kZ91lV4zI8D7JOnZHjF7mYYUys05RR49DYl7k6EWQngijb8vR7zP7f6GvljVdQ4xaiPbxaOi79MjS42zmLfpA/GXKH/Lnmoz6m3xGjZkco+hR5LsoRWpRSmM/nJuok2cR4qjrftCJErMgwcpKC9EbZ6wiw+zrwzpLc3R7omt1cUFeK2LMUupBR47ZOEz1QfD+Qlo5/pLPtHpIcWxWjJ3oUeSrGLuptTT2w7lZEaMXSXWixGjhdpQ+R2sXtRitJO1xWrDZmGI10XLVFHpwi1Q6k6NOqfU+7y/G7Lii/oXYX9IPUw5Bvsq8HDv/wTATpCT74P6I+kFUep/9mbH1KH22Ey+eFK0gowjRClHPPh9eiiLXFaMmkqOdkBHnmEiK9sPRiRbHL02n0mPz5Dik+CqfYszkuGXcMdsH5ycToq5X44lV6vwuX2WUSVEL0X7PYiRKK8PZmeeuFK/KtcVoxxcjOVZrF7sfkEyK45f3l3yNEv+STyHqUs9Sa0nuGTnauvcY7oNs3GzvSNFGa9m4opdGZ5v92WwscYsUryrIW0SMHTmK+GOO3gXcY5xxCFJHimOz6XQUOXqCzMTYTasR430SibEjxUiMdjF3FClWY4uRHL2IMhOiFyXqu1oOKUWR26fSup7J0btoK2LUky1WilaIWoxakC/yXZCRHLOlPIjxsVkVYzTZ4t3hEo2teyl0Jke7z/uZaizRW6d4SCmK3E6MInNytHKIxlxml+lYKY6oUQsxmoTRZTdqjMYbvdLW4f6o0udRVlLMosVowtEKzUunvXokw+5Y4uGlKHJbMYr05PghXydkqsHozsz0mGixky5eGp2l00SNsMI1o8Usjc6iRk+I9uesDLMo0Tt/3UZ7XW4mRZHbi1Ekl+N4rKNGu1i8O/Yy7myxkoxS50yM3kRMNks9GzVmdTg/kQBWo0U7C+1NuHTE6InSRpfeVk2uRGOKXptt/SYcQYwisRxtBPlujsu2ahJm3OGiZ6S1BLti9O6KWUmnkeJjkclxSxod3eGSiTErq+jwTfwIMRPioaUochwxivTHHEVqQdpfzot8/+AMyb2p8pd8FWA3Woyk+CKfMpz5sglb9x7DOYnSaF238vCWpH3IVxFFi7k7cqz2RelytQSnGk+M2n9zjiRGkc8L8xTUxzFWJvaiP0ssSPvBsYK0M88z0eJKxMj44mPSGWfcI2Ksxhqz5+ystifDbF2irotTj67FzTmaGAfd6HFEjlH0OCZt9AfoxdQ9IdolOVukuOdib7gvuuOL2fj5qhy9uidCb0JlZhzxFKmz5ahiFOmPOw7e5Xv0+C5fo0ctSi208QGw4ovqmRijWelsofcWKSLPY9Lt8FkqnQ0T6bpNqbMtkp6NCt+c17PvZ88nS5tPI0WR83SqSBx2nE5vVkp685bXbNm8scVIirrutcO2s7omcGw6nT+KFnU9Gmf0xNgRZLV5y4BWIsQsKj4sR44YNTZSjKLGavxRR426HGm1lWT22FueE40tzkSLnvCQ4H0RfXZtORM1RpFjVM8ee68XybAzjniKKFFztg6XLWnJokdv8sOLJKNoMlq83ZFiNrbIjPRjEk286HolxmoiJoskszKLDLspcyTCU0hR5LwdzpOIV2aCtHLUj70JlGhSJduQIkTsKceZzROg3mdf04sMO2OIpxTi4OydLhPL1igyiyqr4zwBezJEjI/LjBh1PUplsygv2zwRVuOHWdpsz/+U3EOny9LrUc5GkZ4sM3FGaXO1PKcjxmgfnJdsjFHXIzFWgszGIb3nsnHDFSFGbTwN99ThsvR61CtBZtFkJM2uDKP0mWjxcelGjaPspNaRJKtjqk1M3TtHr02n5B47XiWcSJD2cSa47vhhV4rR7+Eefz/wSSSRbNxuZuvIzz5n30dM3Z736dNmj3vteFV6revdSFI/351QWY0Uo31wf8yk1aPMorlKftWx4tSz84racGruvfN10lSv7ESUlQyj16rOKzp/uD8yoURyzOqz4stEGEWCdy3EwaN0vGzsLooiR9kVZnW8V0bn130OzktXivpxFD16db1v5njvHDI53iWP2OlmokhvX0d43rHd94bHphuhdaK8WQk+ZHTo8cidcTaK1PVKnJ3js3OBx2Z23NHb1z0+q0fncvfQIf8wE8nNCLTzetE+eFwqMdrHewjvYaNDDzrkV1YkNvs42gcQMSvKzuPuMQ8JHTSmK7ToGjKhAnsxM1GT7e/ue3jooD2uIT9+FyAyL6q9pAmKl1ufwEmpJIbkYJUVaVU/gwgnoQPvw9bryO8BNFtFhgg3Qoe8HFxbuAZI8ALQeY8BvwfQIDsAAAAAAAAAOBP/D83pcGtIVXLZAAAAAElFTkSuQmCC"/></pattern><linearGradient x1="0.4769696891307831" y1="-0.0010606060968711972" x2="0.5169696807861327" y2="0.9989393949508667" id="master_svg4_9_11864"><stop offset="0%" stop-color="#FAFBFC" stop-opacity="1"/><stop offset="100%" stop-color="#E3E6F0" stop-opacity="1"/></linearGradient><pattern x="8.000473022460938" y="1.9999911785125732" width="8" height="6" patternUnits="userSpaceOnUse" id="master_svg5_10_07468"><image x="0" y="0" width="160" height="110" transform="scale(0.05,0.05454545454545454)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAABuCAYAAACgLRjpAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAABC+SURBVHic7Z3rdttIDoRhO5PNvv/LbmYSZ39ssC6VqgA0daNi4hweXkxR3exPhQtbcsRhhx122GGHHfYAe3l0A3Zij7oPvx70vruxzwDgs/fxj4b02QdH2ZY+PZMC/lFA/ikAun6s9O/e92IFJHfu08P4zACqtk+PTa93S5vCo86bHtu9PSOA3ObV/e74o2yqcqv7u7a9DUJlL2a7+lv1GnfsEdYp2mS7+9subS8DUNkKXLx2xyb7t7apkimoqr9V27uzPQPoAGG4FHwOyKmK3sMm6qXW1TH1Gvd+u7C9AjhROt7u9vn1fG21fyvr1M4BN9nn6+9aDfcGYKd6DjS3qPPUddV7d8enNkkuHHgOOLeE2FZt2A2IXx7dALAKvgl0r83fpyBWbdpqHYQrkOXybo6r93ihv/H+w2xPAKKtqNyrWU+g5PdSbbiWTdzuBLbcfhF/czAqCHdhewGwivMqpXuFxe13IPJ7unZdYlvhexfrXF5/r1/iHFDXBoRwF0DuAcApfAwZA/dG++q8VQhvAeAKfAq8XH5SHxA+B+LuINwDgGkdfAzTm9jmtYPxXkq4Rfk66HL9Cvt5jN9nAuFD7dEAqoF38Cm1e6OFjykYpxCqdq6aSwpyPYEPocvlLU4hTDXMNYLXQfhQGB8NINoEPgXZF7PtQKxccsTjAGSXq8DL5YfoQyqgaquD8OH2SAArd+fgU+B9geWNthWIrIa3gnCL+rHyKfB+/O5LbrOioytGw/gQ+/RQFXy0AnYZb95cBs8tf4UGslLCCYC3iAGd62Xl+xGn8P2IiH/i9IOUIKp2/grft0/rgjnTnMZ9Cra/YOHjSg3zWltiQdeHiH4QJ7GfcrsIXa7f4gPCCjyuB76Lcx+aEe/BBfMxp3wI4F+0fBXHEEpUwk4FQ6wvtSr7deqHyvfP7/Y7+BRUSn2xZIP2qVxwp34u/mP4vsL6K+1XEHJmzBCGWF9qDkDOehNABR+r+QRAtbjzIx4A4h5ccO5P4GMI/xUf8OE2Q8gD2CUjIdZbrav9qeSD471c/o4PALm9FXQKQmxT9vOPd8FO/XKfH7M594ug/QsWBnGigk4BL01ElAusFNCpH8PHH5oQ1+WyTu5nXxlEvMZdQbwngFWGWT1eU8qX6pfLtzgHkSF0CckkE75GFtwpoEs8WPmwzfxeatJCbiN4r79fk+dgP++aGd8LQOXWqtivSj6c+jGECSJCq5KRaQx4iQJ2MaBKPlD9sM1O+Rg4Xlws6Moyd4HwHgBW8d4EQhX/IYTfaFFK6OLAvQL443ebletl9WPgfsL1eHmND1dcJTDY55tCeGsAVczH+y75YAi57KIUkCFUbnjVBd8rCWEXjMqnXK9SO4aPnxvnojJijAF5/2YQ3hJAN5DTsotSQAcfQ+jc8DPFgKzWDIubuKCWtzhVQZUR47WdW7663QJANXAOvil4rvjsYGQVfEYAVb0vwkOHpRsGsIoFI86fkKhYkJXxKnZNAN2AKfiUu60gVNBVSlgpoKoF7gFAjAFdtlu5XQXeRAXRcNaMg++qIF4LwInqRehSy0T9XAw4AbFTQExCVPt5e8W6RITrgAnKBMBqskIuX6JXQdXmVERuPx67ilu+FMAV1dvidjvX656C8KIAdApY9WuLdSqYUGSykAkDu93KXTsAlRuu4Is4VUhs903U8BIAO9XLNYLHAK6Ap57zVtAxgOpZqnqqcE8FZHfqPhAOQIQN7wkDqNSva7eaxIp/v4oabgVwJdHoyixT8NTkAzUJwc2McQ/z9wBgrt1jNhfzIWy4fI119cOxwsmr/BpXrN4E4RYAK1eL26x6L3GqPN0UqxWFc/ApZVXql4+mFHxqf2o8IAyhKw7j+W6mdEI2db2V+r3E6bfs8hh+OFz/LoJwFcBpnOfcLj6BqGp8q+BVi5rKVE1IVX1190CZGwBWQ1aS1zifTu/KNax209hP9QWXhDDifAq/UsM8vhnCS13wFLwJfKq2xwmGmmjgHrcxcK7+pzJg3lZ9dzYFMNepfqwyCB1ms3m/nCuuXC/3Qy3uG3YrSji2FQAvjfUms5sdfG66lZt8+oXeg2dCT93vFterXqOyxyqL/PW7rah+CaGCT9UBO9dbjR1DiCBOIBzDuNUFT+GrwOvUT81uUeWWzt2yAt+r/IKmXFSuueQR8QEfe4yEKyFE6Kqsl9vixu2H+Jv6lt3VlHAKYDUwCj5UHIQBoVuZYDB9wsHqhwOost57ATixbBuCh+rXuWI1A6aDr/pAdjExx4h5zlIsuMUF57briFI8nNGy8ly3m2Y1mW6lbvLk8Zvq9xbDAakss+EMCRDELFSzCnJ2PIXPPQZV9yZf65QQ+7WciLwNzqncbudyJxmumkTwLSL+Hedz/b7ReRwTVjW/VffLCrDVKjWpru/qhm4/wg86vp9TOqd8l1h7nS0uGI8pGKf1vS7pQNVT8/zwOlXm27mZEOuu7yvGLiqPcSKSf0cFxGQEM2KleJXyobp13qEDEcHH89T7XuyCK7dbuV+X4bpSSzWZQCmkS0CqiQbupjr4rq0CKlbiQWJvg24ZZ7MkhAimy3TV+Kh4XXkFZe7JCL9m5I4nCqgGBm8QfrLY/bonGqqs0k2pcknI9EmHCyW4j9cCj41BVAoYcAwTEk5M+AmJKzK7WM9VBhyAXITGJdtXfdCsVQBWMdFEAScTRyeQceKh6oCd662Ac32+lblBYSARQlcXrGI+/gC6eH2ifgwdzylEN/xCr6v6vPlZsIv9sPTCCYibscyxnSs6q9jPueBJXDNJBG5t7IrVh95BiMaq8xrn4+Pg68BTcWaGA/gkx8WCpa3EgLnPHXuJGj5ONjCTrWp8rtwyif0q5Xuk+uF7ORWMOA/wHYQMXhWfT5KxNOXmHYROCbu+RoQH0LnfqpNd/FfV9yZ1Pi6zVM9+u7hmD+qXphISdsMRM2VRsfkk5kNjV8u1RkyGMklyXgbbLUG8ZDKC66Cb28cguiKzm3DAheyu1seD4SDk7XsZA6cK1jjAqjyT56+on4OFoau+X8Jf8+SC9NhWn4RMFdAVobvyCgPYTa1iAFfUb4/WqSCfq8ILVQGo7gmCpwDM75bgN/Xe4vyrA7xcdTKCC45dcOuK0E4FVY2ve9bLcV+X0fFgqb7d25QKIhgRPYh4rUoFu5jPzTfELzjxN/YqFRxBOC3DuA6qjqpZL93Tj079qvl96hPe3fBnMG5zDvIrnbMKHgNeTfXH3yacVhiUAloYFYBONficCj6VjHBNUMFYqR/PcME1B97qhu9N/dKcCqoiNUPoXLCDIg0TDTfFP+9//irrtNLAfcv3475GxLb5gNxhByK7TaWICFpXZmH4JqpXwbdXm0DIExXydS9xOonUudt0ue73aNTSqV+EB9HaSgyolGOigk4N3USFL1G73il4zwSdMwdhxCmI3O+fcBwNkw2E75+oa6ud+vF7KTcsbasCdnGHU0NOUBRsq/EeQohtjDi/Kc9izi3z39WXyNlcXQ9nVaer5TFyCUcX/41tax0wmgZ0alippLoJKuZj9YtYh0zV3u5pS4+tfhsCmfAliBUAv+J0KtfKuFwVOrRLngXj9kQJp0C6OI9vAKpexDmEyv1Ug7MnU9OqOC7ED08mJ7if18GZNFPwqjGsQp1lEFemY3VxYLdw3FZB6pIM9SmvoFIQdq97lHVuVBmDGHEK3yusEcIKronaVXE2H988HYs7OjnuoGS3uSWuUNdWVs1N4/P2bKp9FYh4zlQMqjHoylnqvfn41ZMQ90aqgR041f5U5dCqpwh47Bmtmn7lTKnSJWMSxfHNxgA6yqe2qpTd69A49gnaH33intQ6NeTpWauATva745P3OxtDBrAqgE7MdVx9gn/RdrfvrvMitrv27C3+S5t+gBi+XKuF/1btT9qy9UMux/AaLth9+qpOTxf83RR8DIWwjQNesGcHEM/lNc5qwfXqEmZfHd9sUwBXlC3XDFKu3+l4tahY0MEXYvtPNKd+uZ7eW/XbMbivwOX3V/vd8RObAIhueUX6FYRqsiMfx2ws6D2qoDjE9p9oqwCqyaSTsVhVSmyTg/XMtrjgzq2qTxh2UN0QnGeGgOU1uwfgaJ8JQNx346B+ztf9Owceo0otnbtesktiwInaVeDhjcAK/BTAiM+lfGydN5oA2P1vkeonfhWEy7YK4NTFZuNxhi3ehJx9kdvK7eZ3X/Px0QudU7nhz2DK/eYaZ7y8h/4HiLngmCCMP+J0DCdKuAzjShJSfeKcu+Xfr8tO40RHhi+vmd++ykdIB4CndgmAf8M6t3F8eNycW57EgaVtVUDcdhCqf7yc4Kl/vozvgep3AKhtBUD2Pn9HxPf4ALADEdXQKWDEAnhpCsDMNrFTqsDbZbcIH4LHU6zY7eaPL6rzukmQn8k6j5RrjgETru9xDiGqI7rlKouuXK/znP+3SgERRLxYF/+poBenen8Pr3z465/dNPAQ689mSv0qj8T/hf17nIL4PXR82P3Tmy4OtKq4EgNyjFaVWxg8N5074vSTil8B5Plphws+tYkLZq/EADoIURE5OenKM9y+0lZiwGnJRUHIAOI1GVxUS54FfQD4YSsAZiLCcSBC+J+YwTctzYxsax2wKr1gXY9LLAwJv677yY2jDvhhVQzYhUXoZlH5EkIGkV1xp35jcwCqRIQ7qBTwFTrqJjqm4evcF6FVBvyZn4KkuRiLx8VlwqiCDKFSQZWMTB/ZuTZHRK+AVSLyHh9gVPAxeAwufhGaf/NFTRcPcc3PAh6bq72hC+5KYxwPqjhQKeBPeo/lBCTismfBDCJDqJ7b4utVqQbhOzLgma1kwgghllq4MF0pID8Z2RT7pU3LMHhhnBmDAGbDOvD4hvCTkSr7VdftAHx2QLtBrUIklw3jB58zY7WelmK4DW0fVqZj8cUcfGmueM2u90vocg1PTpjMhEF7dvDYKhDV4DOIPMGA40F2y5N6IEK+7H4j1mJAdfFsQMSHG87tTv3y576qL6B330NF+9OA62ySiKj77iBUMLrZMpNitGvniW0pROMxVsHqkR3fCCw4c9KxRf0OAD/WnQqqpKSasqWeB7P6de2TtuqC+aLvcfqtfNcIFfu9xWnNsPrtlwM+bVtU0D04UEDytkpAqkTkYhfMnXO1QQcgn/Me5z8R0f0aAkJ3AHhqHYC5rcoyyiWzm1X7lft17bK29VmwSkoYQv705fy+7Ej3y0srpZcDwNN9V5JRECoY1Xry9GMZwi3zAbMMo+ydzs0l3TROMs26oYLugG9uWyGcwMjATRKPsfpFbHPBEwgTunwd3oBK7bovHh3waVuBcAIiwzZ57Kbet7XVAVR1PgWL+5EbB1wFXlXzOwD8n1VZKAPSgciJhdrma3EbbgYgv8aB4hYGbZLpdkXnzw6hG2ynSi5Drvad2l0EX8T2wXMQ5noC4wQ89T5dez6TVYPNUExA3ALdZvgiLhu4DsJcV67auVt1rUvb+5lMQVEBOdlX17oIvojLB9TBMQWyWlfbh/Xm4Ohg2gLcJvgirjeoUxDVsSlwB4Br5jJjt11BdnXw0q49qBOYViA7oLuOVTDy/ur2RXarAV5VsqPEcnurSjXVsZuAl3brQZ4q2qQdB5BrNoGlK+GsXGuTvd3qwmRHCeX+NoVmWsq5iT1i8C8tfh82ty0A3Rw6tL0M7F7a8dnsrrApe5aBf5Z27s0eDthhhx122GGHHbZL+y/TIsvHnCezKAAAAABJRU5ErkJggg=="/></pattern><linearGradient x1="0.5015384554862976" y1="0.0014285714132711291" x2="0.5015384554862976" y2="1.0014286041259766" id="master_svg6_9_11883"><stop offset="0%" stop-color="#FF9696" stop-opacity="1"/><stop offset="100%" stop-color="#E8142D" stop-opacity="1"/></linearGradient></defs><g clip-path="url(#master_svg0_4_11566/9_11849)"><g><g style="opacity:0.10000000149011612;"><rect x="-0.00010204315185546875" y="0" width="24" height="24" rx="0" fill="url(#master_svg1_10_07472)" fill-opacity="1"/></g><g><rect x="1.9998979568481445" y="2" width="20" height="20" rx="6" fill="url(#master_svg2_9_11870)" fill-opacity="1"/></g><g><g style="opacity:0.20000000298023224;"><rect x="1.9998979568481445" y="2.0000064373016357" width="20" height="20" rx="0" fill="url(#master_svg3_10_07464)" fill-opacity="1"/></g><g><rect x="3.9793901443481445" y="3.9846255779266357" width="16" height="16" rx="4.5" fill="url(#master_svg4_9_11864)" fill-opacity="1"/></g></g></g><g><g style="opacity:0.20000000298023224;"><rect x="8.000473022460938" y="1.9999911785125732" width="8" height="6" rx="0" fill="url(#master_svg5_10_07468)" fill-opacity="1"/></g><g><path d="M9.461899022460937,3.9999911785125732L9.692856022460937,3.9999911785125732C9.947756022460938,3.9999911785125732,10.154283022460938,3.9999911785125732,10.154323022460938,3.9207191785125732L10.154323022460938,3.690537178512573C10.154323022460938,3.3091591785125734,10.464273022460937,2.9999911785125732,10.846623022460937,2.9999911785125732L13.154323022460938,2.9999911785125732C13.536673022460938,2.9999911785125732,13.846623022460937,3.3091591785125734,13.846623022460937,3.690537178512573L13.846623022460937,3.9207191785125732C13.846663022460937,3.9999911785125732,14.053193022460938,3.9999911785125732,14.308093022460938,3.9999911785125732L14.539043022460937,3.9999911785125732C14.793943022460937,3.9999911785125732,15.000473022460938,4.206191178512573,15.000473022460938,4.460441178512573L15.000473022460938,5.381091178512573C15.000473022460938,5.635351178512574,14.793943022460937,5.841541178512573,14.539043022460937,5.841541178512573L9.461899022460937,5.841541178512573C9.206998022460937,5.841541178512573,9.000473022460938,5.635351178512574,9.000473022460938,5.381091178512573L9.000473022460938,4.460441178512573C9.000473022460938,4.206191178512573,9.206998022460937,3.9999911785125732,9.461899022460937,3.9999911785125732Z" fill-rule="evenodd" fill="url(#master_svg6_9_11883)" fill-opacity="1"/></g></g><g style="opacity:0.05999999865889549;"><rect x="5.876953125" y="6.643762111663818" width="2.040816307067871" height="2.03562331199646" rx="0.5" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><rect x="5.876953125" y="9.697197914123535" width="2.040816307067871" height="2.03562331199646" rx="0.5" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><rect x="5.876953125" y="12.750732421875" width="2.040816307067871" height="2.03562331199646" rx="0.5" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><rect x="5.876953125" y="15.803955078125" width="2.040816307067871" height="2.03562331199646" rx="0.5" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><path d="M9.703563375,7.152667999267578L17.611729375,7.152667999267578C17.893499374999998,7.152667999267578,18.121929375,7.380512999267578,18.121929375,7.661573999267578C18.121929375,7.942634999267578,17.893499374999998,8.170477999267579,17.611729375,8.170477999267579L9.703563375,8.170477999267579C9.421785375,8.170477999267579,9.193359375,7.942634999267578,9.193359375,7.661573999267578C9.193359375,7.380512999267578,9.421785375,7.152667999267578,9.703563375,7.152667999267578Z" fill-rule="evenodd" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><path d="M9.703563375,10.20610237121582L17.611729375,10.20610237121582C17.893499374999998,10.20610237121582,18.121929375,10.43394737121582,18.121929375,10.71500837121582C18.121929375,10.996069371215821,17.893499374999998,11.223912371215821,17.611729375,11.223912371215821L9.703563375,11.223912371215821C9.421785375,11.223912371215821,9.193359375,10.996069371215821,9.193359375,10.71500837121582C9.193359375,10.43394737121582,9.421785375,10.20610237121582,9.703563375,10.20610237121582Z" fill-rule="evenodd" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><path d="M9.703563375,13.259538650512695L15.570909375,13.259538650512695C15.852689375,13.259538650512695,16.081109375,13.487383650512696,16.081109375,13.768444650512695C16.081109375,14.049505650512696,15.852689375,14.277348650512696,15.570909375,14.277348650512696L9.703563375,14.277348650512696C9.421785375,14.277348650512696,9.193359375,14.049505650512696,9.193359375,13.768444650512695C9.193359375,13.487383650512696,9.421785375,13.259538650512695,9.703563375,13.259538650512695Z" fill-rule="evenodd" fill="#000000" fill-opacity="1"/></g><g style="opacity:0.05999999865889549;"><path d="M9.703563375,16.312973022460938L13.274989375,16.312973022460938C13.556769375,16.312973022460938,13.785199375000001,16.540818022460936,13.785199375000001,16.821879022460937C13.785199375000001,17.10294002246094,13.556769375,17.33078302246094,13.274989375,17.33078302246094L9.703563375,17.33078302246094C9.421785375,17.33078302246094,9.193359375,17.10294002246094,9.193359375,16.821879022460937C9.193359375,16.540818022460936,9.421785375,16.312973022460938,9.703563375,16.312973022460938Z" fill-rule="evenodd" fill="#000000" fill-opacity="1"/></g><g><g><path d="M6.349491352661133,7.521625675750732L6.859695352661133,7.893126675750732L7.989793352661133,6.936383475750732C8.033643352661134,6.897669185750733,8.097483352661133,6.891506475750733,8.147963352661133,6.921116475750733C8.168373352661133,6.938928075750733,8.193883352661132,6.9847296757507324,8.147963352661133,7.0585216757507325L6.961735352661133,8.366409675750733C6.907777352661133,8.441099675750733,6.796306352661133,8.441099675750733,6.742348352661133,8.366409675750733L6.160716052661133,7.661574675750733Q6.0943895526611325,7.564882675750733,6.176022052661133,7.508902675750733C6.228952952661133,7.469462675750733,6.3029133526611325,7.474886675750732,6.349491352661133,7.521625675750732Z" fill="#EC2C40" fill-opacity="1"/></g></g><g><g><path d="M6.349491352661133,10.575184455871582L6.859695352661133,10.946685455871583L7.989793352661133,9.989943255871582C8.033643352661134,9.951228475871583,8.097483352661133,9.945065755871582,8.147963352661133,9.974675755871582C8.168373352661133,9.992487355871582,8.193883352661132,10.038288955871582,8.147963352661133,10.112080455871583L6.961735352661133,11.419969455871582C6.907777352661133,11.494659455871583,6.796306352661133,11.494659455871583,6.742348352661133,11.419969455871582L6.160716052661133,10.715133455871582Q6.0943895526611325,10.618441455871583,6.176022052661133,10.562462455871582C6.228952952661133,10.523022455871581,6.302912352661133,10.528446455871581,6.349491352661133,10.575184455871582Z" fill="#EC2C40" fill-opacity="1"/></g></g></g></svg>
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/ukui-clipboard-tray.desktop ukui-clipboard-2.0.0.0/taskTray/data/ukui-clipboard-tray.desktop
--- ukui-clipboard-1.0.0.0/taskTray/data/ukui-clipboard-tray.desktop	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/ukui-clipboard-tray.desktop	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Name=ukui-clipboard-tray
+Name[zh_CN]=UKUI剪切板工具
+Exec=/usr/bin/ukui-clipboard-tray
+#Icon=ukui-clipboard
+Terminal=false
+Type=Application
+NoDisplay=true
+OnlyShowIn=UKUI
+X-UKUI-Autostart-Delay=3
+X-UKUI-Autostart-Phase=Application
+X-UKUI-Autostart-Notify=true
+X-UKUI-AutoRestart=true
diff -Nru ukui-clipboard-1.0.0.0/taskTray/data/uncollection.svg ukui-clipboard-2.0.0.0/taskTray/data/uncollection.svg
--- ukui-clipboard-1.0.0.0/taskTray/data/uncollection.svg	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/data/uncollection.svg	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g><path d="M9.06538,1.716375L10.45039,5.09761L13.9599,5.44571C14.9482,5.54374,15.3579,6.76673,14.6293,7.44376L11.9438,9.93892L12.7213,13.6C12.9331,14.5969,11.8484,15.3607,10.98604,14.822L8,12.9568L5.01396,14.822C4.15154,15.3607,3.06694,14.5969,3.27866,13.6L4.0562000000000005,9.93892L1.3707500000000001,7.44376C0.642091,6.76673,1.0517755,5.54374,2.04006,5.44571L5.54961,5.09761L6.93462,1.716376C7.32588,0.7612140000000001,8.67412,0.7612019999999999,9.06538,1.716375ZM7.86,2.09543L6.24696,6.03335L2.13876,6.44083Q2.0415099999999997,6.45047,2.00976,6.54524Q1.977264,6.64226,2.0514200000000002,6.71117L5.15215,9.59218L4.25684,13.8078Q4.23513,13.91,4.31926,13.9692Q4.40027,14.0263,4.48418,13.9738L8,11.7777L11.5158,13.9738Q11.5997,14.0263,11.6807,13.9692Q11.7649,13.91,11.7432,13.8078L10.84785,9.59218L13.9486,6.71117Q14.0227,6.64226,13.9902,6.54524Q13.9585,6.45047,13.8612,6.44083L9.75304,6.03335L8.14,2.09543Q8.100909999999999,2,8,2Q7.89909,2,7.86,2.09543Z" fill-rule="evenodd" fill="#1A1A1A" fill-opacity="1"/></g></g></svg>
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/taskTray/main.cpp ukui-clipboard-2.0.0.0/taskTray/main.cpp
--- ukui-clipboard-1.0.0.0/taskTray/main.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/main.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,69 @@
+#include <QApplication>
+#include <QQmlApplicationEngine>
+#include <QQmlContext>
+#include <QQuickWindow>
+
+#include "qtsingleapplication.h"
+#include <ukui-log4qt.h>
+#include "clipboardtray.h"
+
+int  main(int argc, char *argv[])
+{
+    initUkuiLog4qt("ukui-clipboard-tray");
+    qDebug()<<"ukui-clipboard-tray start!";
+
+    //跟随系统缩放
+    QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
+    QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
+    QApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
+
+    QtSingleApplication app(argc,argv);
+
+    QTranslator translator;
+    if (!translator.load(QLocale::system(), QLatin1String("ukui-clipboard"),QLatin1String("_"), QLatin1String(":/"))){
+        // 如果指定语言的翻译文件未找到,尝试加载默认的翻译文件
+        if (!translator.load(QString("ukui-clipboard"))) {
+            qWarning() << "Failed to load translation files!";
+        }
+    }
+    app.installTranslator(&translator);
+
+    if (app.isRunning())
+    {
+        qDebug()<<"ukui-clipboard-tray is running";
+        return EXIT_SUCCESS;
+    }
+
+    //此判断需要放在application初始化后,不然会报莫名错误
+    if(!QSystemTrayIcon::isSystemTrayAvailable()) {
+        qWarning()<<">>>>>>  系统不支持托盘~";
+    }
+
+    ClipboardTray tray;
+    QQmlApplicationEngine engine;
+
+//    qmlRegisterType<clipboardData>("MyComponents", 1, 0, "clipboardData");
+//    qmlRegisterType<Clipboardmodel>("MyComponents", 1, 0, "Clipboardmodel");
+
+    // 将C++对象注册到QML上下文中
+    engine.rootContext()->setContextProperty("tray", &tray);
+
+    // 加载QML文件
+    engine.load(QUrl(QStringLiteral("qrc:/source/ClipboardMainWindow.qml")));
+    if (engine.rootObjects().isEmpty()) {
+        qWarning()<<"load ClipboardMainWindow.qml error";
+        return -1;
+    }
+
+    QObject *rootObject = engine.rootObjects().first();
+    if (QQuickWindow *window = qobject_cast<QQuickWindow*>(rootObject)) {
+        window->setIcon(QIcon(":/source/data/kylin-clipboard.svg"));
+        // 移除最大化按钮
+        //window->setFlags(window->flags() & ~Qt::WindowMaximizeButtonHint);
+        //window->setFlags(window->flags() & ~Qt::WindowMinimizeButtonHint);
+        // 或者添加一个标志
+        // window->setFlags(window->flags() | Qt::CustomizeWindowHint);
+    }
+
+    return app.exec();
+}
diff -Nru ukui-clipboard-1.0.0.0/taskTray/source.qrc ukui-clipboard-2.0.0.0/taskTray/source.qrc
--- ukui-clipboard-1.0.0.0/taskTray/source.qrc	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/taskTray/source.qrc	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,13 @@
+<RCC>
+    <qresource prefix="/source">
+        <file>ClipboardMainWindow.qml</file>
+        <file>MyButton.qml</file>
+        <file>MyTabButton.qml</file>
+	<file>RelativeTimeLabel.qml</file>
+        <file>data/uncollection.svg</file>
+        <file>data/clipboard.svg</file>
+        <file>data/kylin-clipboard.svg</file>
+        <file>data/copy.svg</file>
+        <file>data/collection.svg</file>
+    </qresource>
+</RCC>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/CMakeLists.txt ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/CMakeLists.txt
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/CMakeLists.txt	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/CMakeLists.txt	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 3.16)
+project(qtsingleapplication)
+
+find_package(Qt5 COMPONENTS
+        Core Gui Widgets Network
+        REQUIRED)
+
+include_directories(src)
+set(SRCS src/qtsingleapplication.h src/qtsingleapplication.cpp src/qtlocalpeer.h src/qtlocalpeer.cpp)
+
+add_library(${PROJECT_NAME} STATIC ${SRCS})
+target_include_directories(${PROJECT_NAME} PRIVATE src)
+target_link_libraries(${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network)
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/INSTALL.TXT ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/INSTALL.TXT
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/INSTALL.TXT	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/INSTALL.TXT	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,254 @@
+INSTALLATION INSTRUCTIONS
+
+These instructions refer to the package you are installing as
+some-package.tar.gz or some-package.zip. The .zip file is intended for use
+on Windows.
+
+The directory you choose for the installation will be referred to as
+your-install-dir.
+
+Note to Qt Visual Studio Integration users: In the instructions below,
+instead of building from command line with nmake, you can use the menu
+command 'Qt->Open Solution from .pro file' on the .pro files in the
+example and plugin directories, and then build from within Visual
+Studio.
+
+Unpacking and installation
+--------------------------
+
+1.  Unpacking the archive (if you have not done so already).
+
+    On Unix and Mac OS X (in a terminal window):
+
+	cd your-install-dir
+	gunzip some-package.tar.gz
+	tar xvf some-package.tar
+
+    This creates the subdirectory some-package containing the files.
+
+    On Windows:
+
+    Unpack the .zip archive by right-clicking it in explorer and
+    choosing "Extract All...". If your version of Windows does not
+    have zip support, you can use the infozip tools available
+    from www.info-zip.org.
+
+    If you are using the infozip tools (in a command prompt window):
+	cd your-install-dir
+	unzip some-package.zip
+
+2.  Configuring the package.
+
+    The configure script is called "configure" on unix/mac and
+    "configure.bat" on Windows. It should be run from a command line
+    after cd'ing to the package directory. 
+
+    You can choose whether you want to use the component by including
+    its source code directly into your project, or build the component
+    as a dynamic shared library (DLL) that is loaded into the
+    application at run-time. The latter may be preferable for
+    technical or licensing (LGPL) reasons. If you want to build a DLL,
+    run the configure script with the argument "-library". Also see
+    the note about usage below.
+
+    (Components that are Qt plugins, e.g. styles and image formats,
+    are by default built as a plugin DLL.)
+
+    The configure script will prompt you in some cases for further
+    information. Answer these questions and carefully read the license text
+    before accepting the license conditions. The package cannot be used if
+    you do not accept the license conditions.
+
+3.  Building the component and examples (when required).
+
+    If a DLL is to be built, or if you would like to build the
+    examples, next give the commands
+
+        qmake
+        make          [or nmake if your are using Microsoft Visual C++]
+
+    The example program(s) can be found in the directory called
+    "examples" or "example".
+
+    Components that are Qt plugins, e.g. styles and image formats, are
+    ready to be used as soon as they are built, so the rest of this
+    installation instruction can be skipped.
+
+4.  Building the Qt Designer plugin (optional).
+
+    Some of the widget components are provided with plugins for Qt
+    Designer. To build and install the plugin, cd into the
+    some-package/plugin directory and give the commands
+
+	qmake
+	make           [or nmake if your are using Microsoft Visual C++]
+
+    Restart Qt Designer to make it load the new widget plugin.
+
+    Note: If you are using the built-in Qt Designer from the Qt Visual
+    Studio Integration, you will need to manually copy the plugin DLL
+    file, i.e. copy
+	%QTDIR%\plugins\designer\some-component.dll 
+    to the Qt Visual Studio Integration plugin path, typically:
+	C:\Program Files\Trolltech\Qt VS Integration\plugins
+
+    Note: If you for some reason are using a Qt Designer that is built
+    in debug mode, you will need to build the plugin in debug mode
+    also. Edit the file plugin.pro in the plugin directory, changing
+    'release' to 'debug' in the CONFIG line, before running qmake.
+
+
+
+Solutions components are intended to be used directly from the package
+directory during development, so there is no 'make install' procedure.
+
+
+Using a component in your project
+---------------------------------
+
+To use this component in your project, add the following line to the
+project's .pro file (or do the equivalent in your IDE):
+
+    include(your-install-dir/some-package/src/some-package.pri)
+
+This adds the package's sources and headers to the SOURCES and HEADERS
+project variables respectively (or, if the component has been
+configured as a DLL, it adds that library to the LIBS variable), and
+updates INCLUDEPATH to contain the package's src
+directory. Additionally, the .pri file may include some dependencies
+needed by the package.
+
+To include a header file from the package in your sources, you can now
+simply use:
+
+    #include <SomeClass>
+
+or alternatively, in pre-Qt 4 style:
+
+    #include <some-class.h>
+
+Refer to the documentation to see the classes and headers this
+components provides.
+
+
+
+Install documentation (optional)
+--------------------------------
+
+The HTML documentation for the package's classes is located in the
+your-install-dir/some-package/doc/html/index.html. You can open this
+file and read the documentation with any web browser.
+
+To install the documentation into Qt Assistant (for Qt version 4.4 and
+later):
+
+1.  In Assistant, open the Edit->Preferences dialog and choose the
+    Documentation tab. Click the Add... button and select the file
+       your-install-dir/some-package/doc/html/some-package.qch
+    
+For Qt versions prior to 4.4, do instead the following:
+
+1.  The directory your-install-dir/some-package/doc/html contains a
+    file called some-package.dcf. Execute the following commands in a
+    shell, command prompt or terminal window:
+
+	cd your-install-dir/some-package/doc/html/
+	assistant -addContentFile some-package.dcf
+
+The next time you start Qt Assistant, you can access the package's
+documentation.
+
+
+Removing the documentation from assistant
+-----------------------------------------
+
+If you have installed the documentation into Qt Assistant, and want to uninstall it, do as follows, for Qt version 4.4 and later:
+
+1.  In Assistant, open the Edit->Preferences dialog and choose the
+    Documentation tab. In the list of Registered Documentation, select
+    the item com.nokia.qtsolutions.some-package_version, and click
+    the Remove button.
+
+For Qt versions prior to 4.4, do instead the following:
+
+1.  The directory your-install-dir/some-package/doc/html contains a
+    file called some-package.dcf. Execute the following commands in a
+    shell, command prompt or terminal window:
+
+	cd your-install-dir/some-package/doc/html/
+	assistant -removeContentFile some-package.dcf
+
+
+
+Using the component as a DLL
+----------------------------
+
+1. Normal components
+
+    The shared library (DLL) is built and placed in the
+    some-package/lib directory. It is intended to be used directly
+    from there during development. When appropriate, both debug and
+    release versions are built, since the run-time linker will in some
+    cases refuse to load a debug-built DLL into a release-built
+    application or vice versa.
+
+    The following steps are taken by default to help the dynamic
+    linker to locate the DLL at run-time (during development):
+
+    Unix: The some-package.pri file will add linker instructions to
+    add the some-package/lib directory to the rpath of the
+    executable. (When distributing, or if your system does not support
+    rpath, you can copy the shared library to another place that is
+    searched by the dynamic linker, e.g. the "lib" directory of your
+    Qt installation.)
+
+    Mac: The full path to the library is hardcoded into the library
+    itself, from where it is copied into the executable at link time,
+    and ready by the dynamic linker at run-time. (When distributing,
+    you will want to edit these hardcoded paths in the same way as for
+    the Qt DLLs. Refer to the document "Deploying an Application on
+    Mac OS X" in the Qt Reference Documentation.)
+
+    Windows: the .dll file(s) are copied into the "bin" directory of
+    your Qt installation. The Qt installation will already have set up
+    that directory to be searched by the dynamic linker.
+
+
+2. Plugins
+
+    For Qt Solutions plugins (e.g. image formats), both debug and
+    release versions of the plugin are built by default when
+    appropriate, since in some cases the release Qt library will not
+    load a debug plugin, and vice versa. The plugins are automatically
+    copied into the plugins directory of your Qt installation when
+    built, so no further setup is required.
+
+    Plugins may also be built statically, i.e. as a library that will be
+    linked into your application executable, and so will not need to
+    be redistributed as a separate plugin DLL to end users. Static
+    building is required if Qt itself is built statically. To do it,
+    just add "static" to the CONFIG variable in the plugin/plugin.pro
+    file before building. Refer to the "Static Plugins" section in the
+    chapter "How to Create Qt Plugins" for explanation of how to use a
+    static plugin in your application. The source code of the example
+    program(s) will also typically contain the relevant instructions
+    as comments.
+
+
+
+Uninstalling
+------------
+
+    The following command will remove any fils that have been
+    automatically placed outside the package directory itself during
+    installation and building
+
+	make distclean [or nmake if your are using Microsoft Visual C++]
+
+    If Qt Assistant documentation or Qt Designer plugins have been
+    installed, they can be uninstalled manually, ref. above.
+
+
+Enjoy! :)
+
+- The Qt Solutions Team.
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/README.TXT ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/README.TXT
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/README.TXT	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/README.TXT	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,33 @@
+Qt Solutions Component: Single Application
+
+The QtSingleApplication component provides support for
+applications that can be only started once per user.
+
+
+
+Version history:
+
+2.0: - Version 1.3 ported to Qt 4.
+
+2.1: - Fix compilation problem on Mac.
+
+2.2: - Really fix the Mac compilation problem.
+     - Mac: fix crash due to wrong object releasing.
+     - Mac: Fix memory leak.
+
+2.3: - Windows: Force creation of internal widget to make it work
+     with Qt 4.2.
+
+2.4: - Fix the system for automatic window raising on message
+     reception. NOTE: minor API change.
+
+2.5: - Mac: Fix isRunning() to work and report correctly.
+
+2.6: - - initialize() is now obsolete, no longer necessary to call
+     it
+     - - Fixed race condition where multiple instances migth be started
+     - - QtSingleCoreApplication variant provided for non-GUI (console)
+     usage
+     - Complete reimplementation. Visible changes:
+     - LGPL release.
+
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/buildlib/buildlib.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/buildlib/buildlib.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/buildlib/buildlib.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/buildlib/buildlib.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,13 @@
+TEMPLATE=lib
+CONFIG += qt dll qtsingleapplication-buildlib
+mac:CONFIG += absolute_library_soname
+win32|mac:!wince*:!win32-msvc:!macx-xcode:CONFIG += debug_and_release build_all
+include(../src/qtsingleapplication.pri)
+TARGET = $$QTSINGLEAPPLICATION_LIBNAME
+DESTDIR = $$QTSINGLEAPPLICATION_LIBDIR
+win32 {
+    DLLDESTDIR = $$[QT_INSTALL_BINS]
+    QMAKE_DISTCLEAN += $$[QT_INSTALL_BINS]\\$${QTSINGLEAPPLICATION_LIBNAME}.dll
+}
+target.path = $$DESTDIR
+INSTALLS += target
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/common.pri ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/common.pri
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/common.pri	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/common.pri	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,14 @@
+exists(config.pri):infile(config.pri, SOLUTIONS_LIBRARY, yes): CONFIG += qtsingleapplication-uselib
+
+TEMPLATE += fakelib
+greaterThan(QT_MAJOR_VERSION, 5)|\
+  if(equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 4))|\
+  if(equals(QT_MAJOR_VERSION, 5):equals(QT_MINOR_VERSION, 4):greaterThan(QT_PATCH_VERSION, 1)) {
+    QTSINGLEAPPLICATION_LIBNAME = $$qt5LibraryTarget(QtSolutions_SingleApplication-head)
+} else {
+    QTSINGLEAPPLICATION_LIBNAME = $$qtLibraryTarget(QtSolutions_SingleApplication-head)
+}
+TEMPLATE -= fakelib
+
+QTSINGLEAPPLICATION_LIBDIR = $$PWD/lib
+unix:qtsingleapplication-uselib:!qtsingleapplication-buildlib:QMAKE_RPATHDIR += $$QTSINGLEAPPLICATION_LIBDIR
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/configure ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/configure
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/configure	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/configure	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
+    echo "Usage: $0 [-library]"
+    echo 
+    echo "-library: Build the component as a dynamic library (DLL). Default is to"
+    echo "          include the component source code directly in the application."
+    echo 
+    exit 0
+fi
+
+rm -f config.pri
+if [ "x$1" = "x-library" ]; then
+    echo "Configuring to build this component as a dynamic library."
+    echo "SOLUTIONS_LIBRARY = yes" > config.pri
+fi
+
+echo
+echo "This component is now configured."
+echo
+echo "To build the component library (if requested) and example(s),"
+echo "run qmake and your make command."
+echo
+echo "To remove or reconfigure, run make distclean."
+echo
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/configure.bat ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/configure.bat
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/configure.bat	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/configure.bat	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,43 @@
+:: Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+:: SPDX-License-Identifier: BSD-3-Clause
+
+@echo off
+
+rem
+rem "Main"
+rem
+
+if not "%1"=="" (
+    if not "%1"=="-library" (
+        call :PrintUsage
+        goto EOF
+    )
+)
+
+if exist config.pri. del config.pri
+if "%1"=="-library" (
+    echo Configuring to build this component as a dynamic library.
+    echo SOLUTIONS_LIBRARY = yes > config.pri
+)
+
+echo .
+echo This component is now configured.
+echo .
+echo To build the component library (if requested) and example(s),
+echo run qmake and your make or nmake command.
+echo .
+echo To remove or reconfigure, run make (nmake) distclean.
+echo .
+goto EOF
+
+:PrintUsage
+echo Usage: configure.bat [-library]
+echo .
+echo -library: Build the component as a dynamic library (DLL). Default is to
+echo           include the component source directly in the application.
+echo           A DLL may be preferable for technical or licensing (LGPL) reasons.
+echo .
+goto EOF
+
+
+:EOF
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/classic.css ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/classic.css
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/classic.css	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/classic.css	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,284 @@
+BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
+  font-family: Arial, Geneva, Helvetica, sans-serif;
+}
+H1 {
+  text-align: center;
+  font-size: 160%;
+}
+H2 {
+  font-size: 120%;
+}
+H3 {
+  font-size: 100%;
+}
+
+h3.fn,span.fn
+{
+  background-color: #eee;
+  border-width: 1px;
+  border-style: solid;
+  border-color: #ddd;
+  font-weight: bold;
+  padding: 6px 0px 6px 10px;
+  margin: 42px 0px 0px 0px;
+}
+
+hr {
+  border: 0;
+  color: #a0a0a0;
+  background-color: #ccc;
+  height: 1px;
+  width: 100%;
+  text-align: left;
+  margin: 34px 0px 34px 0px;
+}
+
+table.valuelist {
+	border-width: 1px 1px 1px 1px;
+	border-style: solid;
+	border-color: #dddddd;
+	border-collapse: collapse;
+	background-color: #f0f0f0;
+}
+
+table.indextable {
+	border-width: 1px 1px 1px 1px;
+	border-style: solid;
+	border-collapse: collapse;
+	background-color: #f0f0f0;
+    border-color:#555;
+    font-size: 100%;
+}
+
+table td.largeindex {
+	border-width: 1px 1px 1px 1px;
+	border-collapse: collapse;
+	background-color: #f0f0f0;
+    border-color:#555;
+    font-size: 120%;
+}
+
+table.valuelist th {
+	border-width: 1px 1px 1px 2px;
+	padding: 4px;
+	border-style: solid;
+	border-color: #666;
+    color:white;
+    background-color:#666;
+}
+
+th.titleheader  {
+	border-width: 1px 0px 1px 0px;
+	padding: 2px;
+	border-style: solid;
+	border-color: #666;
+    color:white;
+    background-color:#555;
+    background-image:url('images/gradient.png')};
+    background-repeat: repeat-x;
+    font-size: 100%;
+}
+
+
+th.largeheader {
+	border-width: 1px 0px 1px 0px;
+	padding: 4px;
+	border-style: solid;
+	border-color: #444;
+    color:white;
+    background-color:#555555;
+    font-size: 120%;
+}
+
+p {
+
+  margin-left: 4px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+}
+
+a:link
+{
+  color: #0046ad;
+  text-decoration: none
+}
+
+a:visited
+{
+  color: #672967;
+  text-decoration: none
+}
+
+a.obsolete
+{
+  color: #661100;
+  text-decoration: none
+}
+
+a.compat
+{
+  color: #661100;
+  text-decoration: none
+}
+
+a.obsolete:visited
+{
+  color: #995500;
+  text-decoration: none
+}
+
+a.compat:visited
+{
+  color: #995500;
+  text-decoration: none
+}
+
+body
+{
+  background: #ffffff;
+  color: black
+}
+
+table.generic, table.annotated
+{
+  border-width: 1px;
+  border-color:#bbb;
+  border-style:solid;  
+  border-collapse:collapse;
+}
+
+table td.memItemLeft {
+  width: 180px;
+  padding: 2px 0px 0px 8px;
+  margin: 4px;
+  border-width: 1px;
+  border-color: #E0E0E0;
+  border-style: none;
+  font-size: 100%;
+  white-space: nowrap
+}
+
+table td.memItemRight {
+  padding: 2px 8px 0px 8px;
+  margin: 4px;
+  border-width: 1px;
+  border-color: #E0E0E0;
+  border-style: none;
+  font-size: 100%;
+}
+
+table tr.odd {
+  background: #f0f0f0;
+  color: black;
+}
+
+table tr.even {
+  background: #e4e4e4;
+  color: black;
+}
+
+table.annotated th {
+  padding: 3px;
+  text-align: left
+}
+
+table.annotated td {
+  padding: 3px;
+}
+
+table tr pre
+{
+  padding-top: 0px;
+  padding-bottom: 0px;
+  padding-left: 0px;
+  padding-right: 0px;
+  border: none;
+  background: none
+}
+
+tr.qt-style
+{
+  background: #96E066;
+  color: black
+}
+
+body pre
+{
+  padding: 0.2em;
+  border: #e7e7e7 1px solid;
+  background: #f1f1f1;
+  color: black
+}
+
+table tr.qt-code pre
+{
+  padding: 0.2em;
+  border: #e7e7e7 1px solid;
+  background: #f1f1f1;
+  color: black
+}
+
+span.preprocessor, span.preprocessor a
+{
+  color: darkblue;
+}
+
+span.comment
+{
+  color: darkred;
+  font-style: italic
+}
+
+span.string,span.char
+{
+  color: darkgreen;
+}
+
+.title
+{
+    text-align: center
+}
+
+.subtitle
+{
+    font-size: 0.8em
+}
+
+.small-subtitle
+{
+    font-size: 0.65em
+}
+
+.qmlitem {
+    padding: 0;
+}
+
+.qmlname {
+    white-space: nowrap;
+}
+
+.qmltype {
+    text-align: center;
+    font-size: 160%;
+}
+
+.qmlproto {
+    background-color: #eee;
+    border-width: 1px;
+    border-style: solid;
+    border-color: #ddd;
+    font-weight: bold;
+    padding: 6px 10px 6px 10px;
+    margin: 42px 0px 0px 0px;
+}
+
+.qmlreadonly {
+    float: right;
+    color: red
+}
+
+.qmldoc {
+}
+
+*.qmlitem p {
+}
Binary files /tmp/tmp9gdptr6t/pDqV9ROnFH/ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/images/qt-logo.png and /tmp/tmp9gdptr6t/g1CnYQZ71I/ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/images/qt-logo.png differ
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/index.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/index.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/index.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/index.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- index.qdoc -->
+<head>
+  <title>Single Application</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">Single Application<br /><span class="subtitle"></span>
+</h1>
+<a name="description"></a>
+<h2>Description</h2>
+<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> component provides support for applications that can be only started once per user.</p>
+<p>For some applications it is useful or even critical that they are started only once by any user. Future attempts to start the application should activate any already running instance, and possibly perform requested actions, e.g&#x2e; loading a file, in that instance.</p>
+<p>The <a href="qtsingleapplication.html">QtSingleApplication</a> class provides an interface to detect a running instance, and to send command strings to that instance. For console (non-GUI) applications, the <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> variant is provided, which avoids dependency on <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a>.</p>
+<a name="classes"></a>
+<h2>Classes</h2>
+<ul>
+<li><a href="qtsingleapplication.html">QtSingleApplication</a></li>
+<li><a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a></li>
+</ul>
+<a name="examples"></a>
+<h2>Examples</h2>
+<ul>
+<li><a href="qtsingleapplication-example-trivial.html">A Trivial Example</a></li>
+<li><a href="qtsingleapplication-example-loader.html">Loading Documents</a></li>
+<li><a href="qtsinglecoreapplication-example-console.html">A Non-GUI Example</a></li>
+</ul>
+<a name="tested-platforms"></a>
+<h2>Tested platforms</h2>
+<ul>
+<li>Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005</li>
+<li>Qt 4.4, 4.5 / Linux / gcc</li>
+<li>Qt 4.4, 4.5 / MacOS X 10.5 / gcc</li>
+</ul>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-loader.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,175 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- loader.qdoc -->
+<head>
+  <title>Loading Documents</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">Loading Documents<br /><span class="subtitle"></span>
+</h1>
+<p>The application in this example loads or prints the documents passed as commandline parameters to further instances of this application.</p>
+<pre><span class="comment"> /****************************************************************************
+ **
+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+ ** Contact: http://www.qt-project.org/legal
+ **
+ ** This file is part of the Qt Solutions component.
+ **
+ ** You may use this file under the terms of the BSD license as follows:
+ **
+ ** &quot;Redistribution and use in source and binary forms, with or without
+ ** modification, are permitted provided that the following conditions are
+ ** met:
+ **   * Redistributions of source code must retain the above copyright
+ **     notice, this list of conditions and the following disclaimer.
+ **   * Redistributions in binary form must reproduce the above copyright
+ **     notice, this list of conditions and the following disclaimer in
+ **     the documentation and/or other materials provided with the
+ **     distribution.
+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
+ **     the names of its contributors may be used to endorse or promote
+ **     products derived from this software without specific prior written
+ **     permission.
+ **
+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
+ **
+ ****************************************************************************/</span>
+
+ #include &lt;qtsingleapplication.h&gt;
+ #include &lt;QtCore/QFile&gt;
+ #include &lt;QtGui/QMainWindow&gt;
+ #include &lt;QtGui/QPrinter&gt;
+ #include &lt;QtGui/QPainter&gt;
+ #include &lt;QtGui/QTextEdit&gt;
+ #include &lt;QtGui/QMdiArea&gt;
+ #include &lt;QtCore/QTextStream&gt;
+
+ class MainWindow : public QMainWindow
+ {
+     Q_OBJECT
+ public:
+     MainWindow();
+
+ public slots:
+     void handleMessage(const QString&amp; message);
+
+ signals:
+     void needToShow();
+
+ private:
+     QMdiArea *workspace;
+ };</pre>
+<p>The user interface in this application is a <a href="http://qt.nokia.com/doc/4.6/qmainwindow.html">QMainWindow</a> subclass with a <a href="http://qt.nokia.com/doc/4.6/qmdiarea.html">QMdiArea</a> as the central widget. It implements a slot <tt>handleMessage()</tt> that will be connected to the messageReceived() signal of the <a href="qtsingleapplication.html">QtSingleApplication</a> class.</p>
+<pre> MainWindow::MainWindow()
+ {
+     workspace = new QMdiArea(this);
+
+     setCentralWidget(workspace);
+ }</pre>
+<p>The <a href="http://qt.nokia.com/doc/4.6/designer-to-know.html">MainWindow</a> constructor creates a minimal user interface.</p>
+<pre> void MainWindow::handleMessage(const QString&amp; message)
+ {
+     enum Action {
+         Nothing,
+         Open,
+         Print
+     } action;
+
+     action = Nothing;
+     QString filename = message;
+     if (message.toLower().startsWith(&quot;/print &quot;)) {
+         filename = filename.mid(7);
+         action = Print;
+     } else if (!message.isEmpty()) {
+         action = Open;
+     }
+     if (action == Nothing) {
+         emit needToShow();
+         return;
+     }
+
+     QFile file(filename);
+     QString contents;
+     if (file.open(QIODevice::ReadOnly))
+         contents = file.readAll();
+     else
+         contents = &quot;[[Error: Could not load file &quot; + filename + &quot;]]&quot;;
+
+     QTextEdit *view = new QTextEdit;
+     view-&gt;setPlainText(contents);
+
+     switch(action) {</pre>
+<p>The handleMessage() slot interprets the message passed in as a filename that can be prepended with <i>/print</i> to indicate that the file should just be printed rather than loaded.</p>
+<pre>     case Print:
+         {
+             QPrinter printer;
+             view-&gt;print(&amp;printer);
+             delete view;
+         }
+         break;
+
+     case Open:
+         {
+             workspace-&gt;addSubWindow(view);
+             view-&gt;setWindowTitle(message);
+             view-&gt;show();
+             emit needToShow();
+         }
+         break;
+     default:
+         break;
+     };
+ }</pre>
+<p>Loading the file will also activate the window.</p>
+<pre> #include &quot;main.moc&quot;
+
+ int main(int argc, char **argv)
+ {
+     QtSingleApplication instance(&quot;File loader QtSingleApplication example&quot;, argc, argv);
+     QString message;
+     for (int a = 1; a &lt; argc; ++a) {
+         message += argv[a];
+         if (a &lt; argc-1)
+             message += &quot; &quot;;
+     }
+
+     if (instance.sendMessage(message))
+         return 0;</pre>
+<p>The <tt>main</tt> entry point function creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object, and creates a message to send to a running instance of the application. If the message was sent successfully the process exits immediately.</p>
+<pre>     MainWindow mw;
+     mw.handleMessage(message);
+     mw.show();
+
+     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
+                      &amp;mw, SLOT(handleMessage(const QString&amp;)));
+
+     instance.setActivationWindow(&amp;mw, false);
+     QObject::connect(&amp;mw, SIGNAL(needToShow()), &amp;instance, SLOT(activateWindow()));
+
+     return instance.exec();
+ }</pre>
+<p>If the message could not be sent the application starts up. Note that <tt>false</tt> is passed to the call to setActivationWindow() to prevent automatic activation for every message received, e.g&#x2e; when the application should just print a file. Instead, the message handling function determines whether activation is requested, and signals that by emitting the needToShow() signal. This is then simply connected directly to <a href="qtsingleapplication.html">QtSingleApplication</a>'s activateWindow() slot.</p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-example-trivial.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- trivial.qdoc -->
+<head>
+  <title>A Trivial Example</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">A Trivial Example<br /><span class="subtitle"></span>
+</h1>
+<p>The application in this example has a log-view that displays messages sent by further instances of the same application.</p>
+<p>The example demonstrates the use of the <a href="qtsingleapplication.html">QtSingleApplication</a> class to detect and communicate with a running instance of the application using the sendMessage() API. The messageReceived() signal is used to display received messages in a <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a> log.</p>
+<pre><span class="comment"> /****************************************************************************
+ **
+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+ ** Contact: http://www.qt-project.org/legal
+ **
+ ** This file is part of the Qt Solutions component.
+ **
+ ** You may use this file under the terms of the BSD license as follows:
+ **
+ ** &quot;Redistribution and use in source and binary forms, with or without
+ ** modification, are permitted provided that the following conditions are
+ ** met:
+ **   * Redistributions of source code must retain the above copyright
+ **     notice, this list of conditions and the following disclaimer.
+ **   * Redistributions in binary form must reproduce the above copyright
+ **     notice, this list of conditions and the following disclaimer in
+ **     the documentation and/or other materials provided with the
+ **     distribution.
+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
+ **     the names of its contributors may be used to endorse or promote
+ **     products derived from this software without specific prior written
+ **     permission.
+ **
+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
+ **
+ ****************************************************************************/</span>
+
+ #include &lt;qtsingleapplication.h&gt;
+ #include &lt;QtGui/QTextEdit&gt;
+
+ class TextEdit : public QTextEdit
+ {
+     Q_OBJECT
+ public:
+     TextEdit(QWidget *parent = 0)
+         : QTextEdit(parent)
+     {}
+ public slots:
+     void append(const QString &amp;str)
+     {
+         QTextEdit::append(str);
+     }
+ };
+
+ #include &quot;main.moc&quot;
+
+ int main(int argc, char **argv)
+ {
+     QtSingleApplication instance(argc, argv);</pre>
+<p>The example has only the <tt>main</tt> entry point function. A <a href="qtsingleapplication.html">QtSingleApplication</a> object is created immediately.</p>
+<pre>     if (instance.sendMessage(&quot;Wake up!&quot;))
+         return 0;</pre>
+<p>If another instance of this application is already running, sendMessage() will succeed, and this instance just exits immediately.</p>
+<pre>     TextEdit logview;
+     logview.setReadOnly(true);
+     logview.show();</pre>
+<p>Otherwise the instance continues as normal and creates the user interface.</p>
+<pre>     instance.setActivationWindow(&amp;logview);
+
+     QObject::connect(&amp;instance, SIGNAL(messageReceived(const QString&amp;)),
+                      &amp;logview, SLOT(append(const QString&amp;)));
+
+     return instance.exec();</pre>
+<p>The <tt>logview</tt> object is also set as the application's activation window. Every time a message is received, the window will be raised and activated automatically.</p>
+<p>The messageReceived() signal is also connected to the <a href="http://qt.nokia.com/doc/4.6/qtextedit.html">QTextEdit</a>'s append() slot. Every message received from further instances of this application will be displayed in the log.</p>
+<p>Finally the event loop is entered.</p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-members.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,235 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- qtsingleapplication.cpp -->
+<head>
+  <title>List of All Members for QtSingleApplication</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">List of All Members for QtSingleApplication</h1>
+<p>This is the complete list of members for <a href="qtsingleapplication.html">QtSingleApplication</a>, including inherited members.</p>
+<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
+<tr><td width="45%" valign="top"><ul>
+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#ColorSpec-enum">ColorSpec</a></b></div></li>
+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#QS60MainApplicationFactory-typedef">QS60MainApplicationFactory</a></b></div></li>
+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a></b></div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp;, char **, bool )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp;, char **, Type )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display *, Qt::HANDLE, Qt::HANDLE )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display *, int &amp;, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display *, const QString &amp;, int, char **, Qt::HANDLE, Qt::HANDLE )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#aboutQt">aboutQt</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const : QWidget *</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeModalWidget">activeModalWidget</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activePopupWidget">activePopupWidget</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#activeWindow">activeWindow</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#alert">alert</a></b> ( QWidget *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#allWidgets">allWidgets</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">autoMaximizeThreshold</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">autoSipEnabled</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#beep">beep</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#changeOverrideCursor">changeOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#clipboard">clipboard</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#closeAllWindows">closeAllWindows</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#colorSpec">colorSpec</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitData">commitData</a></b> ( QSessionManager &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#commitDataRequest">commitDataRequest</a></b> ( QSessionManager &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">cursorFlashTime</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktop">desktop</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#desktopSettingsAware">desktopSettingsAware</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">doubleClickInterval</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#event">event</a></b> ( QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusChanged">focusChanged</a></b> ( QWidget *, QWidget * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#focusWidget">focusWidget</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font">font</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-2">font</a></b> ( const QWidget * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#font-3">font</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontDatabaseChanged">fontDatabaseChanged</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#fontMetrics">fontMetrics</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">globalStrut</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#id">id</a></b> () const : QString</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#inputContext">inputContext</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isEffectEnabled">isEffectEnabled</a></b> ( Qt::UIEffect )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isLeftToRight">isLeftToRight</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isRightToLeft">isRightToLeft</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#isSessionRestored">isSessionRestored</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputDirection">keyboardInputDirection</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">keyboardInputInterval</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputLocale">keyboardInputLocale</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardModifiers">keyboardModifiers</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keypadNavigationEnabled">keypadNavigationEnabled</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#lastWindowClosed">lastWindowClosed</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">layoutDirection</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#macEventFilter">macEventFilter</a></b> ( EventHandlerCallRef, EventRef )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#mouseButtons">mouseButtons</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#navigationMode">navigationMode</a></b> ()</div></li>
+</ul></td><td valign="top"><ul>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#overrideCursor">overrideCursor</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette">palette</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-2">palette</a></b> ( const QWidget * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#palette-3">palette</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">quitOnLastWindowClosed</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsDecoration">qwsDecoration</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsEventFilter">qwsEventFilter</a></b> ( QWSEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetCustomColors">qwsSetCustomColors</a></b> ( QRgb *, int, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration">qwsSetDecoration</a></b> ( QDecoration * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#qwsSetDecoration-2">qwsSetDecoration</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#restoreOverrideCursor">restoreOverrideCursor</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveState">saveState</a></b> ( QSessionManager &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#saveStateRequest">saveStateRequest</a></b> ( QSessionManager &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionId">sessionId</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#sessionKey">sessionKey</a></b> () const</div></li>
+<li><div class="fn"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget *, bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setActiveWindow">setActiveWindow</a></b> ( QWidget * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoMaximizeThreshold-prop">setAutoMaximizeThreshold</a></b> ( const int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#autoSipEnabled-prop">setAutoSipEnabled</a></b> ( const bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setColorSpec">setColorSpec</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#cursorFlashTime-prop">setCursorFlashTime</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setDesktopSettingsAware">setDesktopSettingsAware</a></b> ( bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#doubleClickInterval-prop">setDoubleClickInterval</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setEffectEnabled">setEffectEnabled</a></b> ( Qt::UIEffect, bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setFont">setFont</a></b> ( const QFont &amp;, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#globalStrut-prop">setGlobalStrut</a></b> ( const QSize &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setGraphicsSystem">setGraphicsSystem</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setInputContext">setInputContext</a></b> ( QInputContext * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#keyboardInputInterval-prop">setKeyboardInputInterval</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#layoutDirection-prop">setLayoutDirection</a></b> ( Qt::LayoutDirection )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setNavigationMode">setNavigationMode</a></b> ( Qt::NavigationMode )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setOverrideCursor">setOverrideCursor</a></b> ( const QCursor &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setPalette">setPalette</a></b> ( const QPalette &amp;, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#quitOnLastWindowClosed-prop">setQuitOnLastWindowClosed</a></b> ( bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">setStartDragDistance</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">setStartDragTime</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle">setStyle</a></b> ( QStyle * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#setStyle-2">setStyle</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">setStyleSheet</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">setWheelScrollLines</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">setWindowIcon</a></b> ( const QIcon &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragDistance-prop">startDragDistance</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#startDragTime-prop">startDragTime</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#style">style</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#styleSheet-prop">styleSheet</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianEventFilter">symbianEventFilter</a></b> ( const QSymbianEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#symbianProcessEvent">symbianProcessEvent</a></b> ( const QSymbianEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#syncX">syncX</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt">topLevelAt</a></b> ( const QPoint &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelAt-2">topLevelAt</a></b> ( int, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#topLevelWidgets">topLevelWidgets</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#type">type</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#wheelScrollLines-prop">wheelScrollLines</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt">widgetAt</a></b> ( const QPoint &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#widgetAt-4">widgetAt</a></b> ( int, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#windowIcon-prop">windowIcon</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11EventFilter">x11EventFilter</a></b> ( XEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qapplication.html#x11ProcessEvent">x11ProcessEvent</a></b> ( XEvent * )</div></li>
+</ul>
+</td></tr>
+</table></p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication-obsolete.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- qtsingleapplication.cpp -->
+<head>
+  <title>Obsolete Members for QtSingleApplication</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">Obsolete Members for QtSingleApplication</h1>
+<p><b>The following class members are obsolete.</b> They are provided to keep old source code working. We strongly advise against using them in new code.</p>
+<p><ul><li><a href="qtsingleapplication.html">QtSingleApplication class reference</a></li></ul></p>
+<h2>Public Functions</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication-obsolete.html#initialize">initialize</a></b> ( bool <i>dummy</i> = true )&nbsp;&nbsp;<tt> (obsolete)</tt></td></tr>
+</table>
+<hr />
+<h2>Member Function Documentation</h2>
+<h3 class="fn"><a name="initialize"></a>void QtSingleApplication::initialize ( bool <i>dummy</i> = true )</h3>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.dcf	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,40 @@
+<!DOCTYPE DCF>
+<DCF ref="index.html" icon="qtsingleapplication.png" imagedir="../../gif" title="Qt Solutions: Single Application Documentation">
+<section ref="classes.html" title="Classes">
+    <section ref="qtsingleapplication.html" title="QtSingleApplication Class Reference">
+        <keyword ref="qtsingleapplication.html">QtSingleApplication</keyword>
+        <keyword ref="qtsingleapplication.html#activateWindow">activateWindow</keyword>
+        <keyword ref="qtsingleapplication.html#activationWindow">activationWindow</keyword>
+        <keyword ref="qtsingleapplication.html#id">id</keyword>
+        <keyword ref="qtsingleapplication.html#isRunning">isRunning</keyword>
+        <keyword ref="qtsingleapplication.html#messageReceived">messageReceived</keyword>
+        <keyword ref="qtsingleapplication.html#sendMessage">sendMessage</keyword>
+        <keyword ref="qtsingleapplication.html#setActivationWindow">setActivationWindow</keyword>
+        <section ref="qtsingleapplication-members.html" title="List of all members"/>
+        <section ref="qtsingleapplication-obsolete.html" title="Obsolete members"/>
+    </section>
+    <section ref="qtsinglecoreapplication.html" title="QtSingleCoreApplication Class Reference">
+        <keyword ref="qtsinglecoreapplication.html">QtSingleCoreApplication</keyword>
+        <keyword ref="qtsinglecoreapplication.html#id">id</keyword>
+        <keyword ref="qtsinglecoreapplication.html#isRunning">isRunning</keyword>
+        <keyword ref="qtsinglecoreapplication.html#messageReceived">messageReceived</keyword>
+        <keyword ref="qtsinglecoreapplication.html#sendMessage">sendMessage</keyword>
+        <section ref="qtsinglecoreapplication-members.html" title="List of all members"/>
+    </section>
+</section>
+<section ref="overviews.html" title="Overviews">
+    <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example">
+        <keyword ref="qtsinglecoreapplication-example-console.html">A non-GUI example</keyword>
+    </section>
+    <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example">
+        <keyword ref="qtsingleapplication-example-trivial.html">A Trivial Example</keyword>
+    </section>
+    <section ref="qtsingleapplication-example-loader.html" title="Loading Documents">
+        <keyword ref="qtsingleapplication-example-loader.html">Loading Documents</keyword>
+    </section>
+    <section ref="index.html" title="Single Application">
+        <keyword ref="index.html">Single Application</keyword>
+    </section>
+</section>
+<section ref="examples.html" title="Tutorial &amp; Examples"/>
+</DCF>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- qtsingleapplication.cpp -->
+<head>
+  <title>QtSingleApplication Class Reference</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">QtSingleApplication Class Reference</h1>
+<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application. <a href="#details">More...</a></p>
+<pre> #include &lt;QtSingleApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>.</p>
+<ul>
+<li><a href="qtsingleapplication-members.html">List of all members, including inherited members</a></li>
+<li><a href="qtsingleapplication-obsolete.html">Obsolete members</a></li>
+</ul>
+<hr />
+<a name="public-functions"></a>
+<h2>Public Functions</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-2">QtSingleApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-3">QtSingleApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i>, Type <i>type</i> )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-4">QtSingleApplication</a></b> ( Display * <i>dpy</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-5">QtSingleApplication</a></b> ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#QtSingleApplication-6">QtSingleApplication</a></b> ( Display * <i>dpy</i>, const QString &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, Qt::HANDLE <i>visual</i> = 0, Qt::HANDLE <i>cmap</i> = 0 )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">QWidget * </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activationWindow">activationWindow</a></b> () const</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#id">id</a></b> () const</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#isRunning">isRunning</a></b> ()</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a></b> ( QWidget * <i>aw</i>, bool <i>activateOnMessage</i> = true )</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>16 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-functions">QApplication</a></li>
+<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
+</ul>
+<hr />
+<a name="public-slots"></a>
+<h2>Public Slots</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#activateWindow">activateWindow</a></b> ()</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>7 public slots inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#public-slots">QApplication</a></li>
+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
+</ul>
+<hr />
+<a name="signals"></a>
+<h2>Signals</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsingleapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>5 signals inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#signals">QApplication</a></li>
+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
+</ul>
+<h3>Additional Inherited Members</h3>
+<ul>
+<li><div class="fn"></div>13 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#properties">QApplication</a></li>
+<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
+<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
+<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
+<li><div class="fn"></div>73 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#static-public-members">QApplication</a></li>
+<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
+<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qapplication.html#protected-functions">QApplication</a></li>
+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
+<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
+<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
+</ul>
+<a name="details"></a>
+<hr />
+<h2>Detailed Description</h2>
+<p>The QtSingleApplication class provides an API to detect and communicate with running instances of an application.</p>
+<p>This class allows you to create applications where only one instance should be running at a time. I.e&#x2e;, if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server.</p>
+<p>By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead.</p>
+<p>The application should create the QtSingleApplication object early in the startup phase, and call <a href="qtsingleapplication.html#isRunning">isRunning</a>() to find out if another instance of this application is already running. If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. In this case, the application should continue with the initialization of the application user interface before entering the event loop with <a href="http://qt.nokia.com/doc/4.6/qapplication.html#exec">exec</a>(), as normal.</p>
+<p>The <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal will be emitted when the running application receives messages from another instance of the same application. When a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>() function and the <a href="qtsingleapplication.html#activateWindow">activateWindow</a>() slot.</p>
+<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, another instance is already running. It may be alerted to the fact that another instance has started by using the <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() function. Also data such as startup parameters (e.g&#x2e; the name of the file the user wanted this new instance to open) can be passed to the running instance with this function. Then, the application should terminate (or enter client mode).</p>
+<p>If <a href="qtsingleapplication.html#isRunning">isRunning</a>() returns true, but <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() fails, that is an indication that the running instance is frozen.</p>
+<p>Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that).</p>
+<pre><span class="comment"> // Original</span>
+ int main(int argc, char **argv)
+ {
+     QApplication app(argc, argv);
+
+     MyMainWidget mmw;
+     mmw.show();
+     return app.exec();
+ }
+
+<span class="comment"> // Single instance</span>
+ int main(int argc, char **argv)
+ {
+     QtSingleApplication app(argc, argv);
+
+     if (app.isRunning())
+         return !app.sendMessage(someDataString);
+
+     MyMainWidget mmw;
+     app.setActivationWindow(&amp;mmw);
+     mmw.show();
+     return app.exec();
+ }</pre>
+<p>Once this QtSingleApplication instance is destroyed (normally when the process exits or crashes), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call <a href="qtsingleapplication.html#isRunning">isRunning</a>() or <a href="qtsingleapplication.html#sendMessage">sendMessage</a>() will assume the role as the new running instance.</p>
+<p>For console (non-GUI) applications, <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> may be used instead of this class, to avoid the dependency on the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
+<p>See also <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>.</p>
+<hr />
+<h2>Member Function Documentation</h2>
+<h3 class="fn"><a name="QtSingleApplication"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, bool <i>GUIenabled</i> = true )</h3>
+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>GUIenabled</i> are passed on to the QAppliation constructor.</p>
+<p>If you are creating a console application (i.e&#x2e; setting <i>GUIenabled</i> to false), you may consider using <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> instead.</p>
+<h3 class="fn"><a name="QtSingleApplication-2"></a>QtSingleApplication::QtSingleApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QAppliation constructor.</p>
+<h3 class="fn"><a name="QtSingleApplication-3"></a>QtSingleApplication::QtSingleApplication ( int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qapplication.html#Type-enum">Type</a> <i>type</i> )</h3>
+<p>Creates a <a href="qtsingleapplication.html">QtSingleApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i>, <i>argv</i>, and <i>type</i> are passed on to the QAppliation constructor.</p>
+<h3 class="fn"><a name="QtSingleApplication-4"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
+<h3 class="fn"><a name="QtSingleApplication-5"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, int &amp; <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
+<h3 class="fn"><a name="QtSingleApplication-6"></a>QtSingleApplication::QtSingleApplication ( Display * <i>dpy</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int <i>argc</i>, char ** <i>argv</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>visual</i> = 0, <a href="http://qt.nokia.com/doc/4.6/qt.html#HANDLE-typedef">Qt::HANDLE</a> <i>cmap</i> = 0 )</h3>
+<p>Special constructor for X11, ref. the documentation of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>'s corresponding constructor. The application identifier will be <i>appId</i>. <i>dpy</i>, <i>argc</i>, <i>argv</i>, <i>visual</i>, and <i>cmap</i> are passed on to the <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a> constructor.</p>
+<h3 class="fn"><a name="activateWindow"></a>void QtSingleApplication::activateWindow ()&nbsp;&nbsp;<tt> [slot]</tt></h3>
+<p>De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set.</p>
+<p>This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance.</p>
+<p>This function should typically be called in response to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal. By default, that will happen automatically, if an activation window has been set.</p>
+<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), <a href="qtsingleapplication.html#messageReceived">messageReceived</a>(), and <a href="qtsingleapplication-obsolete.html#initialize" class="obsolete">initialize</a>().</p>
+<h3 class="fn"><a name="activationWindow"></a><a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * QtSingleApplication::activationWindow () const</h3>
+<p>Returns the applications activation window if one has been set by calling <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), otherwise returns 0.</p>
+<p>See also <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>().</p>
+<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleApplication::id () const</h3>
+<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
+<h3 class="fn"><a name="isRunning"></a>bool QtSingleApplication::isRunning ()</h3>
+<p>Returns true if another instance of this application is running; otherwise false.</p>
+<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
+<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>().</p>
+<h3 class="fn"><a name="messageReceived"></a>void QtSingleApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
+<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
+<p>See also <a href="qtsingleapplication.html#sendMessage">sendMessage</a>(), <a href="qtsingleapplication.html#setActivationWindow">setActivationWindow</a>(), and <a href="qtsingleapplication.html#activateWindow">activateWindow</a>().</p>
+<h3 class="fn"><a name="sendMessage"></a>bool QtSingleApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
+<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsingleapplication.html">QtSingleApplication</a> object in the running instance will emit the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
+<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
+<p>See also <a href="qtsingleapplication.html#isRunning">isRunning</a>() and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
+<h3 class="fn"><a name="setActivationWindow"></a>void QtSingleApplication::setActivationWindow ( <a href="http://qt.nokia.com/doc/4.6/qwidget.html">QWidget</a> * <i>aw</i>, bool <i>activateOnMessage</i> = true )</h3>
+<p>Sets the activation window of this application to <i>aw</i>. The activation window is the widget that will be activated by <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(). This is typically the application's main window.</p>
+<p>If <i>activateOnMessage</i> is true (the default), the window will be activated automatically every time a message is received, just prior to the <a href="qtsingleapplication.html#messageReceived">messageReceived</a>() signal being emitted.</p>
+<p>See also <a href="qtsingleapplication.html#activationWindow">activationWindow</a>(), <a href="qtsingleapplication.html#activateWindow">activateWindow</a>(), and <a href="qtsingleapplication.html#messageReceived">messageReceived</a>().</p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.index ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.index
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.index	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.index	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE QDOCINDEX>
+<INDEX url="" title="Qt Solutions: Single Application Documentation" version="">
+    <namespace access="public" threadsafety="unspecified" status="commendable" name="" href="" location="" module="">
+        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" href="qtsinglecoreapplication.html" location="qtsinglecoreapplication.h" bases="QCoreApplication" module="">
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleCoreApplication(int &amp; argc, char ** argv)">
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleCoreApplication" fullname="QtSingleCoreApplication::QtSingleCoreApplication" href="qtsinglecoreapplication.html#QtSingleCoreApplication-2" location="qtsinglecoreapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleCoreApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleCoreApplication::isRunning" href="qtsinglecoreapplication.html#isRunning" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
+            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleCoreApplication::id" href="qtsinglecoreapplication.html#id" location="qtsinglecoreapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
+            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleCoreApplication::sendMessage" href="qtsinglecoreapplication.html#sendMessage" location="qtsinglecoreapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
+                <parameter left="const QString &amp;" right="" name="message" default=""/>
+                <parameter left="int" right="" name="timeout" default="5000"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleCoreApplication::messageReceived" href="qtsinglecoreapplication.html#messageReceived" location="qtsinglecoreapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
+                <parameter left="const QString &amp;" right="" name="message" default=""/>
+            </function>
+        </class>
+        <class access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" href="qtsingleapplication.html" location="qtsingleapplication.h" bases="QApplication" module="">
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="false" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, bool GUIenabled)">
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+                <parameter left="bool" right="" name="GUIenabled" default="true"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-2" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="2" type="" signature="QtSingleApplication(const QString &amp; appId, int &amp; argc, char ** argv)">
+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-3" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="3" type="" signature="QtSingleApplication(int &amp; argc, char ** argv, Type type)">
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+                <parameter left="Type" right="" name="type" default=""/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-4" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="4" type="" signature="QtSingleApplication(Display * dpy, Qt::HANDLE visual, Qt::HANDLE cmap)">
+                <parameter left="Display *" right="" name="dpy" default=""/>
+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-5" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="5" type="" signature="QtSingleApplication(Display * dpy, int &amp; argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
+                <parameter left="Display *" right="" name="dpy" default=""/>
+                <parameter left="int &amp;" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="QtSingleApplication" fullname="QtSingleApplication::QtSingleApplication" href="qtsingleapplication.html#QtSingleApplication-6" location="qtsingleapplication.h" virtual="non" meta="constructor" const="false" static="false" overload="true" overload-number="6" type="" signature="QtSingleApplication(Display * dpy, const QString &amp; appId, int argc, char ** argv, Qt::HANDLE visual, Qt::HANDLE cmap)">
+                <parameter left="Display *" right="" name="dpy" default=""/>
+                <parameter left="const QString &amp;" right="" name="appId" default=""/>
+                <parameter left="int" right="" name="argc" default=""/>
+                <parameter left="char **" right="" name="argv" default=""/>
+                <parameter left="Qt::HANDLE" right="" name="visual" default="0"/>
+                <parameter left="Qt::HANDLE" right="" name="cmap" default="0"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="isRunning" fullname="QtSingleApplication::isRunning" href="qtsingleapplication.html#isRunning" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="bool" signature="isRunning()"/>
+            <function access="public" threadsafety="unspecified" status="commendable" name="id" fullname="QtSingleApplication::id" href="qtsingleapplication.html#id" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QString" signature="id() const"/>
+            <function access="public" threadsafety="unspecified" status="commendable" name="setActivationWindow" fullname="QtSingleApplication::setActivationWindow" href="qtsingleapplication.html#setActivationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="setActivationWindow(QWidget * aw, bool activateOnMessage)">
+                <parameter left="QWidget *" right="" name="aw" default=""/>
+                <parameter left="bool" right="" name="activateOnMessage" default="true"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="activationWindow" fullname="QtSingleApplication::activationWindow" href="qtsingleapplication.html#activationWindow" location="qtsingleapplication.h" virtual="non" meta="plain" const="true" static="false" overload="false" type="QWidget *" signature="activationWindow() const"/>
+            <function access="public" threadsafety="unspecified" status="obsolete" name="initialize" fullname="QtSingleApplication::initialize" href="qtsingleapplication-obsolete.html#initialize" location="qtsingleapplication.h" virtual="non" meta="plain" const="false" static="false" overload="false" type="void" signature="initialize(bool dummy)">
+                <parameter left="bool" right="" name="dummy" default="true"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="sendMessage" fullname="QtSingleApplication::sendMessage" href="qtsingleapplication.html#sendMessage" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="bool" signature="sendMessage(const QString &amp; message, int timeout)">
+                <parameter left="const QString &amp;" right="" name="message" default=""/>
+                <parameter left="int" right="" name="timeout" default="5000"/>
+            </function>
+            <function access="public" threadsafety="unspecified" status="commendable" name="activateWindow" fullname="QtSingleApplication::activateWindow" href="qtsingleapplication.html#activateWindow" location="qtsingleapplication.h" virtual="non" meta="slot" const="false" static="false" overload="false" type="void" signature="activateWindow()"/>
+            <function access="public" threadsafety="unspecified" status="commendable" name="messageReceived" fullname="QtSingleApplication::messageReceived" href="qtsingleapplication.html#messageReceived" location="qtsingleapplication.h" virtual="non" meta="signal" const="false" static="false" overload="false" type="void" signature="messageReceived(const QString &amp; message)">
+                <parameter left="const QString &amp;" right="" name="message" default=""/>
+            </function>
+        </class>
+        <page access="public" status="commendable" name="index.html" href="index.html" subtype="page" title="Single Application" fulltitle="Single Application" subtitle="" location="index.qdoc">
+            <contents name="description" title="Description" level="1"/>
+            <contents name="classes" title="Classes" level="1"/>
+            <contents name="examples" title="Examples" level="1"/>
+            <contents name="tested-platforms" title="Tested platforms" level="1"/>
+        </page>
+        <page access="public" status="commendable" name="qtsingleapplication-example-trivial.html" href="qtsingleapplication-example-trivial.html" subtype="page" title="A Trivial Example" fulltitle="A Trivial Example" subtitle="" location="trivial.qdoc"/>
+        <page access="public" status="commendable" name="qtsinglecoreapplication-example-console.html" href="qtsinglecoreapplication-example-console.html" subtype="page" title="A non-GUI example" fulltitle="A non-GUI example" subtitle="" location="console.qdoc"/>
+        <page access="public" status="commendable" name="qtsingleapplication-example-loader.html" href="qtsingleapplication-example-loader.html" subtype="page" title="Loading Documents" fulltitle="Loading Documents" subtitle="" location="loader.qdoc"/>
+    </namespace>
+</INDEX>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsingleapplication.qhp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<QtHelpProject version="1.0">
+    <namespace>com.nokia.qtsolutions.qtsingleapplication_head</namespace>
+    <virtualFolder>qdoc</virtualFolder>
+    <customFilter name="Qt Solutions: Single Application">
+        <filterAttribute>qt</filterAttribute>
+        <filterAttribute>solutions</filterAttribute>
+        <filterAttribute>qtsingleapplication</filterAttribute>
+    </customFilter>
+    <filterSection>
+        <filterAttribute>qt</filterAttribute>
+        <filterAttribute>solutions</filterAttribute>
+        <filterAttribute>qtsingleapplication</filterAttribute>
+        <toc>
+            <section ref="index.html" title="Qt Solutions: Single Application Documentation">
+                <section ref="qtsingleapplication-example-trivial.html" title="A Trivial Example"/>
+                <section ref="qtsinglecoreapplication-example-console.html" title="A non-GUI example"/>
+                <section ref="qtsingleapplication-example-loader.html" title="Loading Documents"/>
+                <section ref="index.html" title="Single Application"/>
+            </section>
+        </toc>
+        <keywords>
+            <keyword name="A Trivial Example" id="A Trivial Example" ref="qtsingleapplication-example-trivial.html"/>
+            <keyword name="A non-GUI example" id="A non-GUI example" ref="qtsinglecoreapplication-example-console.html"/>
+            <keyword name="Loading Documents" id="Loading Documents" ref="qtsingleapplication-example-loader.html"/>
+            <keyword name="QtSingleApplication" id="QtSingleApplication" ref="qtsingleapplication.html"/>
+            <keyword name="activateWindow" id="QtSingleApplication::activateWindow" ref="qtsingleapplication.html#activateWindow"/>
+            <keyword name="activationWindow" id="QtSingleApplication::activationWindow" ref="qtsingleapplication.html#activationWindow"/>
+            <keyword name="id" id="QtSingleApplication::id" ref="qtsingleapplication.html#id"/>
+            <keyword name="initialize" id="QtSingleApplication::initialize" ref="qtsingleapplication-obsolete.html#initialize"/>
+            <keyword name="isRunning" id="QtSingleApplication::isRunning" ref="qtsingleapplication.html#isRunning"/>
+            <keyword name="messageReceived" id="QtSingleApplication::messageReceived" ref="qtsingleapplication.html#messageReceived"/>
+            <keyword name="sendMessage" id="QtSingleApplication::sendMessage" ref="qtsingleapplication.html#sendMessage"/>
+            <keyword name="setActivationWindow" id="QtSingleApplication::setActivationWindow" ref="qtsingleapplication.html#setActivationWindow"/>
+            <keyword name="QtSingleCoreApplication" id="QtSingleCoreApplication" ref="qtsinglecoreapplication.html"/>
+            <keyword name="id" id="QtSingleCoreApplication::id" ref="qtsinglecoreapplication.html#id"/>
+            <keyword name="isRunning" id="QtSingleCoreApplication::isRunning" ref="qtsinglecoreapplication.html#isRunning"/>
+            <keyword name="messageReceived" id="QtSingleCoreApplication::messageReceived" ref="qtsinglecoreapplication.html#messageReceived"/>
+            <keyword name="sendMessage" id="QtSingleCoreApplication::sendMessage" ref="qtsinglecoreapplication.html#sendMessage"/>
+            <keyword name="Single Application" id="Single Application" ref="index.html"/>
+        </keywords>
+        <files>
+            <file>qtsingleapplication.html</file>
+            <file>index.html</file>
+            <file>qtsingleapplication-example-trivial.html</file>
+            <file>qtsinglecoreapplication.html</file>
+            <file>qtsingleapplication-example-loader.html</file>
+            <file>qtsinglecoreapplication-example-console.html</file>
+            <file>classic.css</file>
+            <file>images/qt-logo.png</file>
+        </files>
+    </filterSection>
+</QtHelpProject>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-example-console.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,118 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- console.qdoc -->
+<head>
+  <title>A non-GUI example</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">A non-GUI example<br /><span class="subtitle"></span>
+</h1>
+<p>This example shows how to use the single-application functionality in a console application. It does not require the <tt>QtGui</tt> library at all.</p>
+<p>The only differences from the GUI application usage demonstrated in the other examples are:</p>
+<p>1) The <tt>.pro</tt> file should include <tt>qtsinglecoreapplication.pri</tt> instead of <tt>qtsingleapplication.pri</tt></p>
+<p>2) The class name is <tt>QtSingleCoreApplication</tt> instead of <tt>QtSingleApplication</tt>.</p>
+<p>3) No calls are made regarding window activation, for obvious reasons.</p>
+<p>console.pro:</p>
+<pre> TEMPLATE   = app
+ CONFIG    += console
+ SOURCES   += main.cpp
+ include(../../src/qtsinglecoreapplication.pri)
+ QT -= gui</pre>
+<p>main.cpp:</p>
+<pre><span class="comment"> /****************************************************************************
+ **
+ ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+ ** Contact: http://www.qt-project.org/legal
+ **
+ ** This file is part of the Qt Solutions component.
+ **
+ ** You may use this file under the terms of the BSD license as follows:
+ **
+ ** &quot;Redistribution and use in source and binary forms, with or without
+ ** modification, are permitted provided that the following conditions are
+ ** met:
+ **   * Redistributions of source code must retain the above copyright
+ **     notice, this list of conditions and the following disclaimer.
+ **   * Redistributions in binary form must reproduce the above copyright
+ **     notice, this list of conditions and the following disclaimer in
+ **     the documentation and/or other materials provided with the
+ **     distribution.
+ **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
+ **     the names of its contributors may be used to endorse or promote
+ **     products derived from this software without specific prior written
+ **     permission.
+ **
+ ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot;
+ **
+ ****************************************************************************/</span>
+
+ #include &quot;qtsinglecoreapplication.h&quot;
+ #include &lt;QtCore/QDebug&gt;
+
+ void report(const QString&amp; msg)
+ {
+     qDebug(&quot;[%i] %s&quot;, (int)QCoreApplication::applicationPid(), qPrintable(msg));
+ }
+
+ class MainClass : public QObject
+ {
+     Q_OBJECT
+ public:
+     MainClass()
+         : QObject()
+         {}
+
+ public slots:
+     void handleMessage(const QString&amp; message)
+         {
+             report( &quot;Message received: \&quot;&quot; + message + &quot;\&quot;&quot;);
+         }
+ };
+
+ int main(int argc, char **argv)
+ {
+     report(&quot;Starting up&quot;);
+
+     QtSingleCoreApplication app(argc, argv);
+
+     if (app.isRunning()) {
+         QString msg(QString(&quot;Hi master, I am %1.&quot;).arg(QCoreApplication::applicationPid()));
+         bool sentok = app.sendMessage(msg, 2000);
+         QString rep(&quot;Another instance is running, so I will exit.&quot;);
+         rep += sentok ? &quot; Message sent ok.&quot; : &quot; Message sending failed; the other instance may be frozen.&quot;;
+         report(rep);
+         return 0;
+     } else {
+         report(&quot;No other instance is running; so I will.&quot;);
+         MainClass mainObj;
+         QObject::connect(&amp;app, SIGNAL(messageReceived(const QString&amp;)),
+                          &amp;mainObj, SLOT(handleMessage(const QString&amp;)));
+         return app.exec();
+     }
+ }
+
+ #include &quot;main.moc&quot;</pre>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication-members.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- qtsinglecoreapplication.cpp -->
+<head>
+  <title>List of All Members for QtSingleCoreApplication</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">List of All Members for QtSingleCoreApplication</h1>
+<p>This is the complete list of members for <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a>, including inherited members.</p>
+<p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0">
+<tr><td width="45%" valign="top"><ul>
+<li><div class="fn">enum <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#Encoding-enum">Encoding</a></b></div></li>
+<li><div class="fn">typedef <b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#EventFilter-typedef">EventFilter</a></b></div></li>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp;, char ** )</div></li>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp;, int &amp;, char ** )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#aboutToQuit">aboutToQuit</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#addLibraryPath">addLibraryPath</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationDirPath">applicationDirPath</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">applicationFilePath</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">applicationName</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationPid">applicationPid</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">applicationVersion</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#arguments">arguments</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#blockSignals">blockSignals</a></b> ( bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#childEvent">childEvent</a></b> ( QChildEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#children">children</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#closingDown">closingDown</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect">connect</a></b> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connect-2">connect</a></b> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#connectNotify">connectNotify</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#customEvent">customEvent</a></b> ( QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#d_ptr-var">d_ptr</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#deleteLater">deleteLater</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#destroyed">destroyed</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect">disconnect</a></b> ( const QObject *, const char *, const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-2">disconnect</a></b> ( const char *, const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnect-3">disconnect</a></b> ( const QObject *, const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#disconnectNotify">disconnectNotify</a></b> ( const char * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectInfo">dumpObjectInfo</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dumpObjectTree">dumpObjectTree</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#event">event</a></b> ( QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#eventFilter">eventFilter</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exec">exec</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#exit">exit</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#filterEvent">filterEvent</a></b> ( void *, long * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChild">findChild</a></b> ( const QString &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren">findChildren</a></b> ( const QString &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#findChildren-2">findChildren</a></b> ( const QRegExp &amp; ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#flush">flush</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#hasPendingEvents">hasPendingEvents</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const : QString</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#inherits">inherits</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#installEventFilter">installEventFilter</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#installTranslator">installTranslator</a></b> ( QTranslator * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#instance">instance</a></b> ()</div></li>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> () : bool</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#isWidgetType">isWidgetType</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#killTimer">killTimer</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#libraryPaths">libraryPaths</a></b> ()</div></li>
+</ul></td><td valign="top"><ul>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#metaObject">metaObject</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#moveToThread">moveToThread</a></b> ( QThread * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#notify">notify</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">objectName</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">organizationDomain</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">organizationName</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#parent">parent</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent">postEvent</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#postEvent-2">postEvent</a></b> ( QObject *, QEvent *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#processEvents-2">processEvents</a></b> ( QFlags&lt;QEventLoop::ProcessEventsFlag&gt;, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#property">property</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#quit">quit</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#receivers">receivers</a></b> ( const char * ) const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#removeEventFilter">removeEventFilter</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeLibraryPath">removeLibraryPath</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents">removePostedEvents</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removePostedEvents-2">removePostedEvents</a></b> ( QObject *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#removeTranslator">removeTranslator</a></b> ( QTranslator * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendEvent">sendEvent</a></b> ( QObject *, QEvent * )</div></li>
+<li><div class="fn"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp;, int ) : bool</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents">sendPostedEvents</a></b> ( QObject *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#sendPostedEvents-2">sendPostedEvents</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#sender">sender</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationName-prop">setApplicationName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationVersion-prop">setApplicationVersion</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setAttribute">setAttribute</a></b> ( Qt::ApplicationAttribute, bool )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setEventFilter">setEventFilter</a></b> ( EventFilter )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#setLibraryPaths">setLibraryPaths</a></b> ( const QStringList &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#objectName-prop">setObjectName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationDomain-prop">setOrganizationDomain</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#organizationName-prop">setOrganizationName</a></b> ( const QString &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setParent">setParent</a></b> ( QObject * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#setProperty">setProperty</a></b> ( const char *, const QVariant &amp; )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#signalsBlocked">signalsBlocked</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#startTimer">startTimer</a></b> ( int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#startingUp">startingUp</a></b> ()</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticMetaObject-var">staticMetaObject</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b> : </div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#testAttribute">testAttribute</a></b> ( Qt::ApplicationAttribute )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#thread">thread</a></b> () const</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#timerEvent">timerEvent</a></b> ( QTimerEvent * )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#tr">tr</a></b> ( const char *, const char *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qobject.html#trUtf8">trUtf8</a></b> ( const char *, const char *, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate">translate</a></b> ( const char *, const char *, const char *, Encoding, int )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#translate-2">translate</a></b> ( const char *, const char *, const char *, Encoding )</div></li>
+<li><div class="fn"><b><a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#winEventFilter">winEventFilter</a></b> ( MSG *, long * )</div></li>
+</ul>
+</td></tr>
+</table></p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/html/qtsinglecoreapplication.html	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!-- qtsinglecoreapplication.cpp -->
+<head>
+  <title>QtSingleCoreApplication Class Reference</title>
+  <link href="classic.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr>
+<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="57" height="67" border="0" /></td>
+<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a></td>
+</tr></table><h1 class="title">QtSingleCoreApplication Class Reference</h1>
+<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications. <a href="#details">More...</a></p>
+<pre> #include &lt;QtSingleCoreApplication&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a>.</p>
+<ul>
+<li><a href="qtsinglecoreapplication-members.html">List of all members, including inherited members</a></li>
+</ul>
+<hr />
+<a name="public-functions"></a>
+<h2>Public Functions</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication">QtSingleCoreApplication</a></b> ( int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top"></td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#QtSingleCoreApplication-2">QtSingleCoreApplication</a></b> ( const QString &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#id">id</a></b> () const</td></tr>
+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#isRunning">isRunning</a></b> ()</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>4 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-functions">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li>
+</ul>
+<hr />
+<a name="public-slots"></a>
+<h2>Public Slots</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a></b> ( const QString &amp; <i>message</i>, int <i>timeout</i> = 5000 )</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#public-slots">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li>
+</ul>
+<hr />
+<a name="signals"></a>
+<h2>Signals</h2>
+<table class="alignedsummary" border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><b><a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a></b> ( const QString &amp; <i>message</i> )</td></tr>
+</table>
+<ul>
+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#signals">QCoreApplication</a></li>
+<li><div bar="2" class="fn"></div>1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li>
+</ul>
+<h3>Additional Inherited Members</h3>
+<ul>
+<li><div class="fn"></div>4 properties inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#properties">QCoreApplication</a></li>
+<li><div class="fn"></div>1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li>
+<li><div class="fn"></div>1 public type inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li>
+<li><div class="fn"></div>38 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#static-public-members">QCoreApplication</a></li>
+<li><div class="fn"></div>4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li>
+<li><div class="fn"></div>1 protected function inherited from <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#protected-functions">QCoreApplication</a></li>
+<li><div class="fn"></div>7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li>
+<li><div class="fn"></div>2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li>
+</ul>
+<a name="details"></a>
+<hr />
+<h2>Detailed Description</h2>
+<p>A variant of the <a href="qtsingleapplication.html">QtSingleApplication</a> class for non-GUI applications.</p>
+<p>This class is a variant of <a href="qtsingleapplication.html">QtSingleApplication</a> suited for use in console (non-GUI) applications. It is an extension of <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html">QCoreApplication</a> (instead of <a href="http://qt.nokia.com/doc/4.6/qapplication.html">QApplication</a>). It does not require the <a href="http://qt.nokia.com/doc/4.6/qtgui.html">QtGui</a> library.</p>
+<p>The API and usage is identical to <a href="qtsingleapplication.html">QtSingleApplication</a>, except that functions relating to the &quot;activation window&quot; are not present, for obvious reasons. Please refer to the <a href="qtsingleapplication.html">QtSingleApplication</a> documentation for explanation of the usage.</p>
+<p>A QtSingleCoreApplication instance can communicate to a <a href="qtsingleapplication.html">QtSingleApplication</a> instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.</p>
+<p>See also <a href="qtsingleapplication.html">QtSingleApplication</a>.</p>
+<hr />
+<h2>Member Function Documentation</h2>
+<h3 class="fn"><a name="QtSingleCoreApplication"></a>QtSingleCoreApplication::QtSingleCoreApplication ( int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
+<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object. The application identifier will be <a href="http://qt.nokia.com/doc/4.6/qcoreapplication.html#applicationFilePath">QCoreApplication::applicationFilePath</a>(). <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
+<h3 class="fn"><a name="QtSingleCoreApplication-2"></a>QtSingleCoreApplication::QtSingleCoreApplication ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>appId</i>, int &amp; <i>argc</i>, char ** <i>argv</i> )</h3>
+<p>Creates a <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object with the application identifier <i>appId</i>. <i>argc</i> and <i>argv</i> are passed on to the QCoreAppliation constructor.</p>
+<h3 class="fn"><a name="id"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QtSingleCoreApplication::id () const</h3>
+<p>Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.</p>
+<h3 class="fn"><a name="isRunning"></a>bool QtSingleCoreApplication::isRunning ()</h3>
+<p>Returns true if another instance of this application is running; otherwise false.</p>
+<p>This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).</p>
+<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
+<h3 class="fn"><a name="messageReceived"></a>void QtSingleCoreApplication::messageReceived ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3>
+<p>This signal is emitted when the current instance receives a <i>message</i> from another instance of this application.</p>
+<p>See also <a href="qtsinglecoreapplication.html#sendMessage">sendMessage</a>().</p>
+<h3 class="fn"><a name="sendMessage"></a>bool QtSingleCoreApplication::sendMessage ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>message</i>, int <i>timeout</i> = 5000 )&nbsp;&nbsp;<tt> [slot]</tt></h3>
+<p>Tries to send the text <i>message</i> to the currently running instance. The <a href="qtsinglecoreapplication.html">QtSingleCoreApplication</a> object in the running instance will emit the <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>() signal when it receives the message.</p>
+<p>This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within <i>timeout</i> milliseconds, this function return false.</p>
+<p>See also <a href="qtsinglecoreapplication.html#isRunning">isRunning</a>() and <a href="qtsinglecoreapplication.html#messageReceived">messageReceived</a>().</p>
+<p /><address><hr /><div align="center">
+<table width="100%" cellspacing="0" border="0"><tr class="address">
+<td width="30%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
+<td width="40%" align="center"><a href="http://qt.nokia.com/doc/trademarks.html">Trademarks</a></td>
+<td width="30%" align="right"><div align="right">Qt Solutions</div></td>
+</tr></table></div></address></body>
+</html>
Binary files /tmp/tmp9gdptr6t/pDqV9ROnFH/ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/images/qt-logo.png and /tmp/tmp9gdptr6t/g1CnYQZ71I/ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/images/qt-logo.png differ
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/index.qdoc ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/index.qdoc
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/doc/index.qdoc	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/doc/index.qdoc	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,50 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+/*!
+	\page index.html
+	\title Single Application
+
+    	\section1 Description
+	
+			The QtSingleApplication component provides support
+			for applications that can be only started once per user.
+		
+
+	
+			For some applications it is useful or even critical that they are started
+			only once by any user. Future attempts to start the application should
+			activate any already running instance, and possibly perform requested
+			actions, e.g. loading a file, in that instance.
+
+			The QtSingleApplication class provides an interface to detect a running
+			instance, and to send command strings to that instance.
+	                For console (non-GUI) applications, the QtSingleCoreApplication variant is provided, which avoids dependency on QtGui.
+
+		
+
+    	
+		\section1 Classes
+	    \list
+	 \i  QtSingleApplication \i  QtSingleCoreApplication\endlist
+	
+		\section1 Examples
+	    \list
+	 \i  \link qtsingleapplication-example-trivial.html A Trivial Example \endlink  \i  \link qtsingleapplication-example-loader.html Loading Documents \endlink  \i  \link qtsinglecoreapplication-example-console.html A Non-GUI Example \endlink \endlist
+	
+	
+
+    	
+
+    	
+    		\section1 Tested platforms
+		\list
+		\i Qt 4.4, 4.5 / Windows XP / MSVC.NET 2005
+		    \i Qt 4.4, 4.5 / Linux / gcc
+		    \i Qt 4.4, 4.5 / MacOS X 10.5 / gcc
+		    \endlist
+
+    	
+
+	
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/console.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/console.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/console.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/console.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,5 @@
+TEMPLATE   = app
+CONFIG    += console
+SOURCES   += main.cpp
+include(../../src/qtsinglecoreapplication.pri)
+QT -= gui
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/console.qdoc ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/console.qdoc
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/console.qdoc	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/console.qdoc	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,28 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+/*! \page qtsinglecoreapplication-example-console.html
+    \title A non-GUI example
+
+    This example shows how to use the single-application functionality
+    in a console application. It does not require the \c QtGui library
+    at all.
+
+    The only differences from the GUI application usage demonstrated
+    in the other examples are:
+
+    1) The \c.pro file should include \c qtsinglecoreapplication.pri
+       instead of \c qtsingleapplication.pri
+
+    2) The class name is \c QtSingleCoreApplication instead of \c
+       QtSingleApplication.
+
+    3) No calls are made regarding window activation, for obvious reasons.
+
+    console.pro:
+    \quotefile console/console.pro
+
+    main.cpp:
+    \quotefile console/main.cpp
+
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/main.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/main.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/console/main.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/console/main.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,52 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+
+#include "qtsinglecoreapplication.h"
+#include <QDebug>
+
+
+void report(const QString& msg)
+{
+    qDebug("[%i] %s", (int)QCoreApplication::applicationPid(), qPrintable(msg));
+}
+
+class MainClass : public QObject
+{
+    Q_OBJECT
+public:
+    MainClass()
+        : QObject()
+        {}
+
+public slots:
+    void handleMessage(const QString& message)
+        {
+            report( "Message received: \"" + message + "\"");
+        }
+};
+
+int main(int argc, char **argv)
+{
+    report("Starting up");
+
+    QtSingleCoreApplication app(argc, argv);
+
+    if (app.isRunning()) {
+        QString msg(QString("Hi master, I am %1.").arg(QCoreApplication::applicationPid()));
+        bool sentok = app.sendMessage(msg, 2000);
+        QString rep("Another instance is running, so I will exit.");
+        rep += sentok ? " Message sent ok." : " Message sending failed; the other instance may be frozen.";
+        report(rep);
+        return 0;
+    } else {
+        report("No other instance is running; so I will.");
+        MainClass mainObj;
+        QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
+                         &mainObj, SLOT(handleMessage(const QString&)));
+        return app.exec();
+    }
+}
+
+
+#include "main.moc"
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/examples.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/examples.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/examples.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/examples.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,4 @@
+TEMPLATE = subdirs
+SUBDIRS	 = trivial \
+	   loader  \
+           console
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/file1.qsl ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/file1.qsl
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/file1.qsl	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/file1.qsl	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+File 1
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/file2.qsl ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/file2.qsl
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/file2.qsl	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/file2.qsl	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+File 2
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/loader.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/loader.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/loader.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/loader.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,6 @@
+greaterThan(QT_MAJOR_VERSION, 4): QT += printsupport
+TEMPLATE	= app
+
+include(../../src/qtsingleapplication.pri)
+
+SOURCES		+= main.cpp
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/loader.qdoc ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/loader.qdoc
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/loader.qdoc	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/loader.qdoc	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,44 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+/*! \page qtsingleapplication-example-loader.html
+    \title Loading Documents
+
+    The application in this example loads or prints the documents 
+    passed as commandline parameters to further instances of this
+    application.
+
+    \quotefromfile loader/main.cpp
+    \printuntil };
+    The user interface in this application is a QMainWindow subclass
+    with a QMdiArea as the central widget. It implements a slot
+    \c handleMessage() that will be connected to the messageReceived()
+    signal of the QtSingleApplication class.
+
+    \printuntil }
+    The MainWindow constructor creates a minimal user interface.
+
+    \printto case Print:
+    The handleMessage() slot interprets the message passed in as a
+    filename that can be prepended with \e /print to indicate that
+    the file should just be printed rather than loaded.
+
+    \printto #include
+    Loading the file will also activate the window.
+
+    \printto mw
+    The \c main entry point function creates a QtSingleApplication
+    object, and creates a message to send to a running instance
+    of the application. If the message was sent successfully the
+    process exits immediately.
+
+    \printuntil }
+    If the message could not be sent the application starts up.  Note
+    that \c false is passed to the call to setActivationWindow() to
+    prevent automatic activation for every message received, e.g. when
+    the application should just print a file. Instead, the message
+    handling function determines whether activation is requested, and
+    signals that by emitting the needToShow() signal. This is then
+    simply connected directly to QtSingleApplication's
+    activateWindow() slot.
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/main.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/main.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/loader/main.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/loader/main.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,115 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#include <qtsingleapplication.h>
+#include <QFile>
+#include <QMainWindow>
+#include <QPrinter>
+#include <QPainter>
+#include <QTextEdit>
+#include <QMdiArea>
+#include <QTextStream>
+
+class MainWindow : public QMainWindow
+{
+    Q_OBJECT
+public:
+    MainWindow();
+
+public slots:
+    void handleMessage(const QString& message);
+
+signals:
+    void needToShow();
+
+private:
+    QMdiArea *workspace;
+};
+
+MainWindow::MainWindow()
+{
+    workspace = new QMdiArea(this);
+
+    setCentralWidget(workspace);
+}
+
+void MainWindow::handleMessage(const QString& message)
+{
+    enum Action {
+	Nothing,
+	Open,
+	Print
+    } action;
+
+    action = Nothing;
+    QString filename = message;
+    if (message.toLower().startsWith("/print ")) {
+	filename = filename.mid(7);
+	action = Print;
+    } else if (!message.isEmpty()) {
+	action = Open;
+    }
+    if (action == Nothing) {
+        emit needToShow();
+	return;
+    }
+
+    QFile file(filename);
+    QString contents;
+    if (file.open(QIODevice::ReadOnly))
+        contents = file.readAll();
+    else
+        contents = "[[Error: Could not load file " + filename + "]]";
+
+    QTextEdit *view = new QTextEdit;
+    view->setPlainText(contents);
+
+    switch(action) {
+    case Print:
+	{
+	    QPrinter printer;
+            view->print(&printer);
+            delete view;
+        }
+	break;
+
+    case Open:
+	{
+	    workspace->addSubWindow(view);
+	    view->setWindowTitle(message);
+	    view->show();
+            emit needToShow();
+	}
+	break;
+    default:
+	break;
+    };
+}
+
+#include "main.moc"
+
+int main(int argc, char **argv)
+{
+    QtSingleApplication instance("File loader QtSingleApplication example", argc, argv);
+    QString message;
+    for (int a = 1; a < argc; ++a) {
+	message += argv[a];
+	if (a < argc-1)
+	    message += " ";
+    }
+
+    if (instance.sendMessage(message))
+	return 0;
+
+    MainWindow mw;
+    mw.handleMessage(message);
+    mw.show();
+
+    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
+		     &mw, SLOT(handleMessage(const QString&)));
+
+    instance.setActivationWindow(&mw, false);
+    QObject::connect(&mw, SIGNAL(needToShow()), &instance, SLOT(activateWindow()));
+
+    return instance.exec();
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/main.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/main.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/main.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/main.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,41 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#include <qtsingleapplication.h>
+#include <QTextEdit>
+
+class TextEdit : public QTextEdit
+{
+    Q_OBJECT
+public:
+    TextEdit(QWidget *parent = 0)
+        : QTextEdit(parent)
+    {}
+public slots:
+    void append(const QString &str)
+    {
+        QTextEdit::append(str);
+    }
+};
+
+#include "main.moc"
+
+
+
+int main(int argc, char **argv)
+{
+    QtSingleApplication instance(argc, argv);
+    if (instance.sendMessage("Wake up!"))
+	return 0;
+
+    TextEdit logview;
+    logview.setReadOnly(true);
+    logview.show();
+
+    instance.setActivationWindow(&logview);
+
+    QObject::connect(&instance, SIGNAL(messageReceived(const QString&)),
+		     &logview, SLOT(append(const QString&)));
+
+    return instance.exec();
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,5 @@
+TEMPLATE	= app
+
+include(../../src/qtsingleapplication.pri)
+
+SOURCES		+= main.cpp
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.qdoc ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.qdoc
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.qdoc	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/examples/trivial/trivial.qdoc	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,39 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+/*! \page qtsingleapplication-example-trivial.html
+    \title A Trivial Example
+
+    The application in this example has a log-view that displays
+    messages sent by further instances of the same application.
+
+    The example demonstrates the use of the QtSingleApplication
+    class to detect and communicate with a running instance of
+    the application using the sendMessage() API. The messageReceived()
+    signal is used to display received messages in a QTextEdit log.
+
+    \quotefromfile trivial/main.cpp
+    \printuntil instance
+    The example has only the \c main entry point function.
+    A QtSingleApplication object is created immediately.
+
+    \printuntil return 
+    If another instance of this application is already running,
+    sendMessage() will succeed, and this instance just exits
+    immediately.
+
+    \printuntil show()
+    Otherwise the instance continues as normal and creates the
+    user interface.
+
+    \printuntil return instance.exec();
+    The \c logview object is also set as the application's activation
+    window. Every time a message is received, the window will be raised
+    and activated automatically.
+
+    The messageReceived() signal is also connected to the QTextEdit's
+    append() slot. Every message received from further instances of
+    this application will be displayed in the log.
+
+    Finally the event loop is entered.
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/qtsingleapplication.pro ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/qtsingleapplication.pro
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/qtsingleapplication.pro	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/qtsingleapplication.pro	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,5 @@
+TEMPLATE=subdirs
+CONFIG += ordered
+include(common.pri)
+qtsingleapplication-uselib:SUBDIRS=buildlib
+SUBDIRS+=examples
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/QtLockedFile ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/QtLockedFile
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/QtLockedFile	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/QtLockedFile	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+#include "qtlockedfile.h"
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/QtSingleApplication ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/QtSingleApplication
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/QtSingleApplication	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/QtSingleApplication	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1 @@
+#include "qtsingleapplication.h"
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,177 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+
+#include "qtlocalpeer.h"
+#include <QCoreApplication>
+#include <QDataStream>
+#include <QRegularExpression>
+#include <QTime>
+
+#if defined(Q_OS_WIN)
+#include <QLibrary>
+#include <qt_windows.h>
+typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
+static PProcessIdToSessionId pProcessIdToSessionId = 0;
+#endif
+#if defined(Q_OS_UNIX)
+#include <sys/types.h>
+#include <time.h>
+#include <unistd.h>
+#endif
+
+namespace QtLP_Private {
+#include "qtlockedfile.cpp"
+#if defined(Q_OS_WIN)
+#include "qtlockedfile_win.cpp"
+#else
+#include "qtlockedfile_unix.cpp"
+#endif
+}
+
+const char* QtLocalPeer::ack = "ack";
+
+QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
+    : QObject(parent), id(appId)
+{
+    QString prefix = id;
+    if (id.isEmpty()) {
+        id = QCoreApplication::applicationFilePath();
+#if defined(Q_OS_WIN)
+        id = id.toLower();
+#endif
+        prefix = id.section(QLatin1Char('/'), -1);
+    }
+    prefix.remove(QRegularExpression("[^a-zA-Z]"));
+    prefix.truncate(6);
+
+    QByteArray idc = id.toUtf8();
+    quint16 idNum = qChecksum(idc.constData(), idc.size());
+    socketName = QLatin1String("qtsingleapp-") + prefix
+                 + QLatin1Char('-') + QString::number(idNum, 16);
+
+#if defined(Q_OS_WIN)
+    if (!pProcessIdToSessionId) {
+        QLibrary lib("kernel32");
+        pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
+    }
+    if (pProcessIdToSessionId) {
+        DWORD sessionId = 0;
+        pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
+        socketName += QLatin1Char('-') + QString::number(sessionId, 16);
+    }
+#else
+    socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
+#endif
+
+    server = new QLocalServer(this);
+    QString lockName = QDir(QDir::tempPath()).absolutePath()
+                       + QLatin1Char('/') + socketName
+                       + QLatin1String("-lockfile");
+    lockFile.setFileName(lockName);
+    lockFile.open(QIODevice::ReadWrite);
+}
+
+
+
+bool QtLocalPeer::isClient()
+{
+    if (lockFile.isLocked())
+        return false;
+
+    if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
+        return true;
+
+    bool res = server->listen(socketName);
+#if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
+    // ### Workaround
+    if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
+        QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
+        res = server->listen(socketName);
+    }
+#endif
+    if (!res)
+        qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
+    QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
+    return false;
+}
+
+
+bool QtLocalPeer::sendMessage(const QString &message, int timeout)
+{
+    if (!isClient())
+        return false;
+
+    QLocalSocket socket;
+    bool connOk = false;
+    for(int i = 0; i < 2; i++) {
+        // Try twice, in case the other instance is just starting up
+        socket.connectToServer(socketName);
+        connOk = socket.waitForConnected(timeout/2);
+        if (connOk || i)
+            break;
+        int ms = 250;
+#if defined(Q_OS_WIN)
+        Sleep(DWORD(ms));
+#else
+        struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
+        nanosleep(&ts, NULL);
+#endif
+    }
+    if (!connOk)
+        return false;
+
+    QByteArray uMsg(message.toUtf8());
+    QDataStream ds(&socket);
+    ds.writeBytes(uMsg.constData(), uMsg.size());
+    bool res = socket.waitForBytesWritten(timeout);
+    if (res) {
+        res &= socket.waitForReadyRead(timeout);   // wait for ack
+        if (res)
+            res &= (socket.read(qstrlen(ack)) == ack);
+    }
+    return res;
+}
+
+
+void QtLocalPeer::receiveConnection()
+{
+    QLocalSocket* socket = server->nextPendingConnection();
+    if (!socket)
+        return;
+
+    while (true) {
+        if (socket->state() == QLocalSocket::UnconnectedState) {
+            qWarning("QtLocalPeer: Peer disconnected");
+            delete socket;
+            return;
+        }
+        if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
+            break;
+        socket->waitForReadyRead();
+    }
+
+    QDataStream ds(socket);
+    QByteArray uMsg;
+    quint32 remaining;
+    ds >> remaining;
+    uMsg.resize(remaining);
+    int got = 0;
+    char* uMsgBuf = uMsg.data();
+    do {
+        got = ds.readRawData(uMsgBuf, remaining);
+        remaining -= got;
+        uMsgBuf += got;
+    } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
+    if (got < 0) {
+        qWarning("QtLocalPeer: Message reception failed %s", socket->errorString().toLatin1().constData());
+        delete socket;
+        return;
+    }
+    QString message(QString::fromUtf8(uMsg));
+    socket->write(ack, qstrlen(ack));
+    socket->waitForBytesWritten(1000);
+    socket->waitForDisconnected(1000); // make sure client reads ack
+    delete socket;
+    emit messageReceived(message); //### (might take a long time to return)
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.h ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.h
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlocalpeer.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,40 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#ifndef QTLOCALPEER_H
+#define QTLOCALPEER_H
+
+#include <QLocalServer>
+#include <QLocalSocket>
+#include <QDir>
+
+#include "qtlockedfile.h"
+
+class QtLocalPeer : public QObject
+{
+    Q_OBJECT
+
+public:
+    QtLocalPeer(QObject *parent = 0, const QString &appId = QString());
+    bool isClient();
+    bool sendMessage(const QString &message, int timeout);
+    QString applicationId() const
+        { return id; }
+
+Q_SIGNALS:
+    void messageReceived(const QString &message);
+
+protected Q_SLOTS:
+    void receiveConnection();
+
+protected:
+    QString id;
+    QString socketName;
+    QLocalServer* server;
+    QtLP_Private::QtLockedFile lockFile;
+
+private:
+    static const char* ack;
+};
+
+#endif // QTLOCALPEER_H
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,156 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#include "qtlockedfile.h"
+
+/*!
+    \class QtLockedFile
+
+    \brief The QtLockedFile class extends QFile with advisory locking
+    functions.
+
+    A file may be locked in read or write mode. Multiple instances of
+    \e QtLockedFile, created in multiple processes running on the same
+    machine, may have a file locked in read mode. Exactly one instance
+    may have it locked in write mode. A read and a write lock cannot
+    exist simultaneously on the same file.
+
+    The file locks are advisory. This means that nothing prevents
+    another process from manipulating a locked file using QFile or
+    file system functions offered by the OS. Serialization is only
+    guaranteed if all processes that access the file use
+    QLockedFile. Also, while holding a lock on a file, a process
+    must not open the same file again (through any API), or locks
+    can be unexpectedly lost.
+
+    The lock provided by an instance of \e QtLockedFile is released
+    whenever the program terminates. This is true even when the
+    program crashes and no destructors are called.
+*/
+
+/*! \enum QtLockedFile::LockMode
+
+    This enum describes the available lock modes.
+
+    \value ReadLock A read lock.
+    \value WriteLock A write lock.
+    \value NoLock Neither a read lock nor a write lock.
+*/
+
+/*!
+    Constructs an unlocked \e QtLockedFile object. This constructor
+    behaves in the same way as \e QFile::QFile().
+
+    \sa QFile::QFile()
+*/
+QtLockedFile::QtLockedFile()
+    : QFile()
+{
+#ifdef Q_OS_WIN
+    wmutex = 0;
+    rmutex = 0;
+#endif
+    m_lock_mode = NoLock;
+}
+
+/*!
+    Constructs an unlocked QtLockedFile object with file \a name. This
+    constructor behaves in the same way as \e QFile::QFile(const
+    QString&).
+
+    \sa QFile::QFile()
+*/
+QtLockedFile::QtLockedFile(const QString &name)
+    : QFile(name)
+{
+#ifdef Q_OS_WIN
+    wmutex = 0;
+    rmutex = 0;
+#endif
+    m_lock_mode = NoLock;
+}
+
+/*!
+  Opens the file in OpenMode \a mode.
+
+  This is identical to QFile::open(), with the one exception that the
+  Truncate mode flag is disallowed. Truncation would conflict with the
+  advisory file locking, since the file would be modified before the
+  write lock is obtained. If truncation is required, use resize(0)
+  after obtaining the write lock.
+
+  Returns true if successful; otherwise false.
+
+  \sa QFile::open(), QFile::resize()
+*/
+bool QtLockedFile::open(OpenMode mode)
+{
+    if (mode & QIODevice::Truncate) {
+        qWarning("QtLockedFile::open(): Truncate mode not allowed.");
+        return false;
+    }
+    return QFile::open(mode);
+}
+
+/*!
+    Returns \e true if this object has a in read or write lock;
+    otherwise returns \e false.
+
+    \sa lockMode()
+*/
+bool QtLockedFile::isLocked() const
+{
+    return m_lock_mode != NoLock;
+}
+
+/*!
+    Returns the type of lock currently held by this object, or \e
+    QtLockedFile::NoLock.
+
+    \sa isLocked()
+*/
+QtLockedFile::LockMode QtLockedFile::lockMode() const
+{
+    return m_lock_mode;
+}
+
+/*!
+    \fn bool QtLockedFile::lock(LockMode mode, bool block = true)
+
+    Obtains a lock of type \a mode. The file must be opened before it
+    can be locked.
+
+    If \a block is true, this function will block until the lock is
+    aquired. If \a block is false, this function returns \e false
+    immediately if the lock cannot be aquired.
+
+    If this object already has a lock of type \a mode, this function
+    returns \e true immediately. If this object has a lock of a
+    different type than \a mode, the lock is first released and then a
+    new lock is obtained.
+
+    This function returns \e true if, after it executes, the file is
+    locked by this object, and \e false otherwise.
+
+    \sa unlock(), isLocked(), lockMode()
+*/
+
+/*!
+    \fn bool QtLockedFile::unlock()
+
+    Releases a lock.
+
+    If the object has no lock, this function returns immediately.
+
+    This function returns \e true if, after it executes, the file is
+    not locked by this object, and \e false otherwise.
+
+    \sa lock(), isLocked(), lockMode()
+*/
+
+/*!
+    \fn QtLockedFile::~QtLockedFile()
+
+    Destroys the \e QtLockedFile object. If any locks were held, they
+    are released.
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.h ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.h
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,60 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#ifndef QTLOCKEDFILE_H
+#define QTLOCKEDFILE_H
+
+#include <QFile>
+#ifdef Q_OS_WIN
+#include <QVector>
+#endif
+
+#if defined(Q_OS_WIN)
+#  if !defined(QT_QTLOCKEDFILE_EXPORT) && !defined(QT_QTLOCKEDFILE_IMPORT)
+#    define QT_QTLOCKEDFILE_EXPORT
+#  elif defined(QT_QTLOCKEDFILE_IMPORT)
+#    if defined(QT_QTLOCKEDFILE_EXPORT)
+#      undef QT_QTLOCKEDFILE_EXPORT
+#    endif
+#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllimport)
+#  elif defined(QT_QTLOCKEDFILE_EXPORT)
+#    undef QT_QTLOCKEDFILE_EXPORT
+#    define QT_QTLOCKEDFILE_EXPORT __declspec(dllexport)
+#  endif
+#else
+#  define QT_QTLOCKEDFILE_EXPORT
+#endif
+
+namespace QtLP_Private {
+
+class QT_QTLOCKEDFILE_EXPORT QtLockedFile : public QFile
+{
+public:
+    enum LockMode { NoLock = 0, ReadLock, WriteLock };
+
+    QtLockedFile();
+    QtLockedFile(const QString &name);
+    ~QtLockedFile();
+
+    bool open(OpenMode mode);
+
+    bool lock(LockMode mode, bool block = true);
+    bool unlock();
+    bool isLocked() const;
+    LockMode lockMode() const;
+
+private:
+#ifdef Q_OS_WIN
+    Qt::HANDLE wmutex;
+    Qt::HANDLE rmutex;
+    QVector<Qt::HANDLE> rmutexes;
+    QString mutexname;
+
+    Qt::HANDLE getMutexHandle(int idx, bool doCreate);
+    bool waitMutex(Qt::HANDLE mutex, bool doBlock);
+
+#endif
+    LockMode m_lock_mode;
+};
+}
+#endif
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_unix.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,78 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#include <string.h>
+#include <errno.h>
+#include <unistd.h>
+#include <fcntl.h>
+
+#include "qtlockedfile.h"
+
+bool QtLockedFile::lock(LockMode mode, bool block)
+{
+    if (!isOpen()) {
+        qWarning("QtLockedFile::lock(): file is not opened");
+        return false;
+    }
+ 
+    if (mode == NoLock)
+        return unlock();
+           
+    if (mode == m_lock_mode)
+        return true;
+
+    if (m_lock_mode != NoLock)
+        unlock();
+
+    struct flock fl;
+    fl.l_whence = SEEK_SET;
+    fl.l_start = 0;
+    fl.l_len = 0;
+    fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK;
+    int cmd = block ? F_SETLKW : F_SETLK;
+    int ret = fcntl(handle(), cmd, &fl);
+    
+    if (ret == -1) {
+        if (errno != EINTR && errno != EAGAIN)
+            qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
+        return false;
+    }
+
+    
+    m_lock_mode = mode;
+    return true;
+}
+
+
+bool QtLockedFile::unlock()
+{
+    if (!isOpen()) {
+        qWarning("QtLockedFile::unlock(): file is not opened");
+        return false;
+    }
+
+    if (!isLocked())
+        return true;
+
+    struct flock fl;
+    fl.l_whence = SEEK_SET;
+    fl.l_start = 0;
+    fl.l_len = 0;
+    fl.l_type = F_UNLCK;
+    int ret = fcntl(handle(), F_SETLKW, &fl);
+    
+    if (ret == -1) {
+        qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno));
+        return false;
+    }
+    
+    m_lock_mode = NoLock;
+    return true;
+}
+
+QtLockedFile::~QtLockedFile()
+{
+    if (isOpen())
+        unlock();
+}
+
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_win.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_win.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_win.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtlockedfile_win.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,174 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#include "qtlockedfile.h"
+#include <qt_windows.h>
+#include <QFileInfo>
+
+#define MUTEX_PREFIX "QtLockedFile mutex "
+// Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS
+#define MAX_READERS MAXIMUM_WAIT_OBJECTS
+
+#if QT_VERSION >= 0x050000
+#define QT_WA(unicode, ansi) unicode
+#endif
+
+Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate)
+{
+    if (mutexname.isEmpty()) {
+        QFileInfo fi(*this);
+        mutexname = QString::fromLatin1(MUTEX_PREFIX)
+                    + fi.absoluteFilePath().toLower();
+    }
+    QString mname(mutexname);
+    if (idx >= 0)
+        mname += QString::number(idx);
+
+    Qt::HANDLE mutex;
+    if (doCreate) {
+        QT_WA( { mutex = CreateMutexW(NULL, FALSE, (TCHAR*)mname.utf16()); },
+               { mutex = CreateMutexA(NULL, FALSE, mname.toLocal8Bit().constData()); } );
+        if (!mutex) {
+            qErrnoWarning("QtLockedFile::lock(): CreateMutex failed");
+            return 0;
+        }
+    }
+    else {
+        QT_WA( { mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, (TCHAR*)mname.utf16()); },
+               { mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, mname.toLocal8Bit().constData()); } );
+        if (!mutex) {
+            if (GetLastError() != ERROR_FILE_NOT_FOUND)
+                qErrnoWarning("QtLockedFile::lock(): OpenMutex failed");
+            return 0;
+        }
+    }
+    return mutex;
+}
+
+bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock)
+{
+    Q_ASSERT(mutex);
+    DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0);
+    switch (res) {
+    case WAIT_OBJECT_0:
+    case WAIT_ABANDONED:
+        return true;
+        break;
+    case WAIT_TIMEOUT:
+        break;
+    default:
+        qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed");
+    }
+    return false;
+}
+
+
+
+bool QtLockedFile::lock(LockMode mode, bool block)
+{
+    if (!isOpen()) {
+        qWarning("QtLockedFile::lock(): file is not opened");
+        return false;
+    }
+
+    if (mode == NoLock)
+        return unlock();
+
+    if (mode == m_lock_mode)
+        return true;
+
+    if (m_lock_mode != NoLock)
+        unlock();
+
+    if (!wmutex && !(wmutex = getMutexHandle(-1, true)))
+        return false;
+
+    if (!waitMutex(wmutex, block))
+        return false;
+
+    if (mode == ReadLock) {
+        int idx = 0;
+        for (; idx < MAX_READERS; idx++) {
+            rmutex = getMutexHandle(idx, false);
+            if (!rmutex || waitMutex(rmutex, false))
+                break;
+            CloseHandle(rmutex);
+        }
+        bool ok = true;
+        if (idx >= MAX_READERS) {
+            qWarning("QtLockedFile::lock(): too many readers");
+            rmutex = 0;
+            ok = false;
+        }
+        else if (!rmutex) {
+            rmutex = getMutexHandle(idx, true);
+            if (!rmutex || !waitMutex(rmutex, false))
+                ok = false;
+        }
+        if (!ok && rmutex) {
+            CloseHandle(rmutex);
+            rmutex = 0;
+        }
+        ReleaseMutex(wmutex);
+        if (!ok)
+            return false;
+    }
+    else {
+        Q_ASSERT(rmutexes.isEmpty());
+        for (int i = 0; i < MAX_READERS; i++) {
+            Qt::HANDLE mutex = getMutexHandle(i, false);
+            if (mutex)
+                rmutexes.append(mutex);
+        }
+        if (rmutexes.size()) {
+            DWORD res = WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(),
+                                               TRUE, block ? INFINITE : 0);
+            if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) {
+                if (res != WAIT_TIMEOUT)
+                    qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed");
+                m_lock_mode = WriteLock;  // trick unlock() to clean up - semiyucky
+                unlock();
+                return false;
+            }
+        }
+    }
+
+    m_lock_mode = mode;
+    return true;
+}
+
+bool QtLockedFile::unlock()
+{
+    if (!isOpen()) {
+        qWarning("QtLockedFile::unlock(): file is not opened");
+        return false;
+    }
+
+    if (!isLocked())
+        return true;
+
+    if (m_lock_mode == ReadLock) {
+        ReleaseMutex(rmutex);
+        CloseHandle(rmutex);
+        rmutex = 0;
+    }
+    else {
+        foreach(Qt::HANDLE mutex, rmutexes) {
+            ReleaseMutex(mutex);
+            CloseHandle(mutex);
+        }
+        rmutexes.clear();
+        ReleaseMutex(wmutex);
+    }
+
+    m_lock_mode = QtLockedFile::NoLock;
+    return true;
+}
+
+QtLockedFile::~QtLockedFile()
+{
+    if (isOpen())
+        unlock();
+    if (wmutex)
+        CloseHandle(wmutex);
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,310 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+
+#include "qtsingleapplication.h"
+#include "qtlocalpeer.h"
+#include <QWidget>
+
+
+/*!
+    \class QtSingleApplication qtsingleapplication.h
+    \brief The QtSingleApplication class provides an API to detect and
+    communicate with running instances of an application.
+
+    This class allows you to create applications where only one
+    instance should be running at a time. I.e., if the user tries to
+    launch another instance, the already running instance will be
+    activated instead. Another usecase is a client-server system,
+    where the first started instance will assume the role of server,
+    and the later instances will act as clients of that server.
+
+    By default, the full path of the executable file is used to
+    determine whether two processes are instances of the same
+    application. You can also provide an explicit identifier string
+    that will be compared instead.
+
+    The application should create the QtSingleApplication object early
+    in the startup phase, and call isRunning() to find out if another
+    instance of this application is already running. If isRunning()
+    returns false, it means that no other instance is running, and
+    this instance has assumed the role as the running instance. In
+    this case, the application should continue with the initialization
+    of the application user interface before entering the event loop
+    with exec(), as normal.
+
+    The messageReceived() signal will be emitted when the running
+    application receives messages from another instance of the same
+    application. When a message is received it might be helpful to the
+    user to raise the application so that it becomes visible. To
+    facilitate this, QtSingleApplication provides the
+    setActivationWindow() function and the activateWindow() slot.
+
+    If isRunning() returns true, another instance is already
+    running. It may be alerted to the fact that another instance has
+    started by using the sendMessage() function. Also data such as
+    startup parameters (e.g. the name of the file the user wanted this
+    new instance to open) can be passed to the running instance with
+    this function. Then, the application should terminate (or enter
+    client mode).
+
+    If isRunning() returns true, but sendMessage() fails, that is an
+    indication that the running instance is frozen.
+
+    Here's an example that shows how to convert an existing
+    application to use QtSingleApplication. It is very simple and does
+    not make use of all QtSingleApplication's functionality (see the
+    examples for that).
+
+    \code
+    // Original
+    int main(int argc, char **argv)
+    {
+        QApplication app(argc, argv);
+
+        MyMainWidget mmw;
+        mmw.show();
+        return app.exec();
+    }
+
+    // Single instance
+    int main(int argc, char **argv)
+    {
+        QtSingleApplication app(argc, argv);
+
+        if (app.isRunning())
+            return !app.sendMessage(someDataString);
+
+        MyMainWidget mmw;
+        app.setActivationWindow(&mmw);
+        mmw.show();
+        return app.exec();
+    }
+    \endcode
+
+    Once this QtSingleApplication instance is destroyed (normally when
+    the process exits or crashes), when the user next attempts to run the
+    application this instance will not, of course, be encountered. The
+    next instance to call isRunning() or sendMessage() will assume the
+    role as the new running instance.
+
+    For console (non-GUI) applications, QtSingleCoreApplication may be
+    used instead of this class, to avoid the dependency on the QtGui
+    library.
+
+    \sa QtSingleCoreApplication
+*/
+
+
+void QtSingleApplication::sysInit(const QString &appId)
+{
+    actWin = 0;
+    peer = new QtLocalPeer(this, appId);
+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
+}
+
+
+/*!
+    Creates a QtSingleApplication object. The application identifier
+    will be QCoreApplication::applicationFilePath(). \a argc, \a
+    argv, and \a GUIenabled are passed on to the QAppliation constructor.
+
+    If you are creating a console application (i.e. setting \a
+    GUIenabled to false), you may consider using
+    QtSingleCoreApplication instead.
+*/
+
+QtSingleApplication::QtSingleApplication(int &argc, char **argv, bool GUIenabled)
+    : QApplication(argc, argv, GUIenabled)
+{
+    sysInit();
+}
+
+
+/*!
+    Creates a QtSingleApplication object with the application
+    identifier \a appId. \a argc and \a argv are passed on to the
+    QAppliation constructor.
+*/
+
+QtSingleApplication::QtSingleApplication(const QString &appId, int &argc, char **argv)
+    : QApplication(argc, argv)
+{
+    sysInit(appId);
+}
+
+#if QT_VERSION < 0x050000
+
+/*!
+    Creates a QtSingleApplication object. The application identifier
+    will be QCoreApplication::applicationFilePath(). \a argc, \a
+    argv, and \a type are passed on to the QAppliation constructor.
+*/
+QtSingleApplication::QtSingleApplication(int &argc, char **argv, Type type)
+    : QApplication(argc, argv, type)
+{
+    sysInit();
+}
+
+
+#  if defined(Q_WS_X11)
+/*!
+  Special constructor for X11, ref. the documentation of
+  QApplication's corresponding constructor. The application identifier
+  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
+  and \a cmap are passed on to the QApplication constructor.
+*/
+QtSingleApplication::QtSingleApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QApplication(dpy, visual, cmap)
+{
+    sysInit();
+}
+
+/*!
+  Special constructor for X11, ref. the documentation of
+  QApplication's corresponding constructor. The application identifier
+  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
+  argv, \a visual, and \a cmap are passed on to the QApplication
+  constructor.
+*/
+QtSingleApplication::QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QApplication(dpy, argc, argv, visual, cmap)
+{
+    sysInit();
+}
+
+/*!
+  Special constructor for X11, ref. the documentation of
+  QApplication's corresponding constructor. The application identifier
+  will be \a appId. \a dpy, \a argc, \a
+  argv, \a visual, and \a cmap are passed on to the QApplication
+  constructor.
+*/
+QtSingleApplication::QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QApplication(dpy, argc, argv, visual, cmap)
+{
+    sysInit(appId);
+}
+#  endif // Q_WS_X11
+#endif // QT_VERSION < 0x050000
+
+
+/*!
+    Returns true if another instance of this application is running;
+    otherwise false.
+
+    This function does not find instances of this application that are
+    being run by a different user (on Windows: that are running in
+    another session).
+
+    \sa sendMessage()
+*/
+
+bool QtSingleApplication::isRunning()
+{
+    return peer->isClient();
+}
+
+
+/*!
+    Tries to send the text \a message to the currently running
+    instance. The QtSingleApplication object in the running instance
+    will emit the messageReceived() signal when it receives the
+    message.
+
+    This function returns true if the message has been sent to, and
+    processed by, the current instance. If there is no instance
+    currently running, or if the running instance fails to process the
+    message within \a timeout milliseconds, this function return false.
+
+    \sa isRunning(), messageReceived()
+*/
+bool QtSingleApplication::sendMessage(const QString &message, int timeout)
+{
+    return peer->sendMessage(message, timeout);
+}
+
+
+/*!
+    Returns the application identifier. Two processes with the same
+    identifier will be regarded as instances of the same application.
+*/
+QString QtSingleApplication::id() const
+{
+    return peer->applicationId();
+}
+
+
+/*!
+  Sets the activation window of this application to \a aw. The
+  activation window is the widget that will be activated by
+  activateWindow(). This is typically the application's main window.
+
+  If \a activateOnMessage is true (the default), the window will be
+  activated automatically every time a message is received, just prior
+  to the messageReceived() signal being emitted.
+
+  \sa activateWindow(), messageReceived()
+*/
+
+void QtSingleApplication::setActivationWindow(QWidget* aw, bool activateOnMessage)
+{
+    actWin = aw;
+    if (activateOnMessage)
+        connect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
+    else
+        disconnect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow()));
+}
+
+
+/*!
+    Returns the applications activation window if one has been set by
+    calling setActivationWindow(), otherwise returns 0.
+
+    \sa setActivationWindow()
+*/
+QWidget* QtSingleApplication::activationWindow() const
+{
+    return actWin;
+}
+
+
+/*!
+  De-minimizes, raises, and activates this application's activation window.
+  This function does nothing if no activation window has been set.
+
+  This is a convenience function to show the user that this
+  application instance has been activated when he has tried to start
+  another instance.
+
+  This function should typically be called in response to the
+  messageReceived() signal. By default, that will happen
+  automatically, if an activation window has been set.
+
+  \sa setActivationWindow(), messageReceived(), initialize()
+*/
+void QtSingleApplication::activateWindow()
+{
+    if (actWin) {
+        actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized);
+        actWin->raise();
+        actWin->activateWindow();
+    }
+}
+
+
+/*!
+    \fn void QtSingleApplication::messageReceived(const QString& message)
+
+    This signal is emitted when the current instance receives a \a
+    message from another instance of this application.
+
+    \sa sendMessage(), setActivationWindow(), activateWindow()
+*/
+
+
+/*!
+    \fn void QtSingleApplication::initialize(bool dummy = true)
+
+    \obsolete
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.h ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.h
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,68 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#ifndef QTSINGLEAPPLICATION_H
+#define QTSINGLEAPPLICATION_H
+
+#include <QApplication>
+
+class QtLocalPeer;
+
+#if defined(Q_OS_WIN)
+#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
+#    define QT_QTSINGLEAPPLICATION_EXPORT
+#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
+#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
+#      undef QT_QTSINGLEAPPLICATION_EXPORT
+#    endif
+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
+#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
+#    undef QT_QTSINGLEAPPLICATION_EXPORT
+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
+#  endif
+#else
+#  define QT_QTSINGLEAPPLICATION_EXPORT
+#endif
+
+class QT_QTSINGLEAPPLICATION_EXPORT QtSingleApplication : public QApplication
+{
+    Q_OBJECT
+
+public:
+    QtSingleApplication(int &argc, char **argv, bool GUIenabled = true);
+    QtSingleApplication(const QString &id, int &argc, char **argv);
+#if QT_VERSION < 0x050000
+    QtSingleApplication(int &argc, char **argv, Type type);
+#  if defined(Q_WS_X11)
+    QtSingleApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
+    QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
+    QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
+#  endif // Q_WS_X11
+#endif // QT_VERSION < 0x050000
+
+    bool isRunning();
+    QString id() const;
+
+    void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
+    QWidget* activationWindow() const;
+
+    // Obsolete:
+    void initialize(bool dummy = true)
+        { isRunning(); Q_UNUSED(dummy) }
+
+public Q_SLOTS:
+    bool sendMessage(const QString &message, int timeout = 5000);
+    void activateWindow();
+
+
+Q_SIGNALS:
+    void messageReceived(const QString &message);
+
+
+private:
+    void sysInit(const QString &appId = QString());
+    QtLocalPeer *peer;
+    QWidget *actWin;
+};
+
+#endif // QTSINGLEAPPLICATION_H
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.pri ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.pri
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.pri	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleapplication.pri	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,17 @@
+include(../common.pri)
+INCLUDEPATH += $$PWD
+DEPENDPATH += $$PWD
+QT *= network
+greaterThan(QT_MAJOR_VERSION, 4): QT *= widgets
+
+qtsingleapplication-uselib:!qtsingleapplication-buildlib {
+    LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
+} else {
+    SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
+    HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
+}
+
+win32 {
+    contains(TEMPLATE, lib):contains(CONFIG, shared):DEFINES += QT_QTSINGLEAPPLICATION_EXPORT
+    else:qtsingleapplication-uselib:DEFINES += QT_QTSINGLEAPPLICATION_IMPORT
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,112 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+
+#include "qtsinglecoreapplication.h"
+#include "qtlocalpeer.h"
+
+/*!
+    \class QtSingleCoreApplication qtsinglecoreapplication.h
+    \brief A variant of the QtSingleApplication class for non-GUI applications.
+
+    This class is a variant of QtSingleApplication suited for use in
+    console (non-GUI) applications. It is an extension of
+    QCoreApplication (instead of QApplication). It does not require
+    the QtGui library.
+
+    The API and usage is identical to QtSingleApplication, except that
+    functions relating to the "activation window" are not present, for
+    obvious reasons. Please refer to the QtSingleApplication
+    documentation for explanation of the usage.
+
+    A QtSingleCoreApplication instance can communicate to a
+    QtSingleApplication instance if they share the same application
+    id. Hence, this class can be used to create a light-weight
+    command-line tool that sends commands to a GUI application.
+
+    \sa QtSingleApplication
+*/
+
+/*!
+    Creates a QtSingleCoreApplication object. The application identifier
+    will be QCoreApplication::applicationFilePath(). \a argc and \a
+    argv are passed on to the QCoreAppliation constructor.
+*/
+
+QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv)
+    : QCoreApplication(argc, argv)
+{
+    peer = new QtLocalPeer(this);
+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
+}
+
+
+/*!
+    Creates a QtSingleCoreApplication object with the application
+    identifier \a appId. \a argc and \a argv are passed on to the
+    QCoreAppliation constructor.
+*/
+QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId, int &argc, char **argv)
+    : QCoreApplication(argc, argv)
+{
+    peer = new QtLocalPeer(this, appId);
+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
+}
+
+
+/*!
+    Returns true if another instance of this application is running;
+    otherwise false.
+
+    This function does not find instances of this application that are
+    being run by a different user (on Windows: that are running in
+    another session).
+
+    \sa sendMessage()
+*/
+
+bool QtSingleCoreApplication::isRunning()
+{
+    return peer->isClient();
+}
+
+
+/*!
+    Tries to send the text \a message to the currently running
+    instance. The QtSingleCoreApplication object in the running instance
+    will emit the messageReceived() signal when it receives the
+    message.
+
+    This function returns true if the message has been sent to, and
+    processed by, the current instance. If there is no instance
+    currently running, or if the running instance fails to process the
+    message within \a timeout milliseconds, this function return false.
+
+    \sa isRunning(), messageReceived()
+*/
+
+bool QtSingleCoreApplication::sendMessage(const QString &message, int timeout)
+{
+    return peer->sendMessage(message, timeout);
+}
+
+
+/*!
+    Returns the application identifier. Two processes with the same
+    identifier will be regarded as instances of the same application.
+*/
+
+QString QtSingleCoreApplication::id() const
+{
+    return peer->applicationId();
+}
+
+
+/*!
+    \fn void QtSingleCoreApplication::messageReceived(const QString& message)
+
+    This signal is emitted when the current instance receives a \a
+    message from another instance of this application.
+
+    \sa sendMessage()
+*/
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.h ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.h
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,34 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#ifndef QTSINGLECOREAPPLICATION_H
+#define QTSINGLECOREAPPLICATION_H
+
+#include <QCoreApplication>
+
+class QtLocalPeer;
+
+class QtSingleCoreApplication : public QCoreApplication
+{
+    Q_OBJECT
+
+public:
+    QtSingleCoreApplication(int &argc, char **argv);
+    QtSingleCoreApplication(const QString &id, int &argc, char **argv);
+
+    bool isRunning();
+    QString id() const;
+
+public Q_SLOTS:
+    bool sendMessage(const QString &message, int timeout = 5000);
+
+
+Q_SIGNALS:
+    void messageReceived(const QString &message);
+
+
+private:
+    QtLocalPeer* peer;
+};
+
+#endif // QTSINGLECOREAPPLICATION_H
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsinglecoreapplication.pri	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,10 @@
+INCLUDEPATH	+= $$PWD
+DEPENDPATH      += $$PWD
+HEADERS		+= $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
+SOURCES		+= $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
+
+QT *= network
+
+win32:contains(TEMPLATE, lib):contains(CONFIG, shared) {
+    DEFINES += QT_QTSINGLECOREAPPLICATION_EXPORT=__declspec(dllexport)
+}
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,243 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+
+#include "qtsingleguiapplication.h"
+#include "qtlocalpeer.h"
+
+
+/*!
+    \class QtSingleGuiApplication qtsingleguiapplication.h
+    \brief The QtSingleGuiApplication class provides an API to detect and
+    communicate with running instances of an application.
+
+    This class allows you to create applications where only one
+    instance should be running at a time. I.e., if the user tries to
+    launch another instance, the already running instance will be
+    activated instead. Another usecase is a client-server system,
+    where the first started instance will assume the role of server,
+    and the later instances will act as clients of that server.
+
+    By default, the full path of the executable file is used to
+    determine whether two processes are instances of the same
+    application. You can also provide an explicit identifier string
+    that will be compared instead.
+
+    The application should create the QtSingleGuiApplication object early
+    in the startup phase, and call isRunning() to find out if another
+    instance of this application is already running. If isRunning()
+    returns false, it means that no other instance is running, and
+    this instance has assumed the role as the running instance. In
+    this case, the application should continue with the initialization
+    of the application user interface before entering the event loop
+    with exec(), as normal.
+
+    The messageReceived() signal will be emitted when the running
+    application receives messages from another instance of the same
+    application. When a message is received it might be helpful to the
+    user to raise the application so that it becomes visible.
+
+    If isRunning() returns true, another instance is already
+    running. It may be alerted to the fact that another instance has
+    started by using the sendMessage() function. Also data such as
+    startup parameters (e.g. the name of the file the user wanted this
+    new instance to open) can be passed to the running instance with
+    this function. Then, the application should terminate (or enter
+    client mode).
+
+    If isRunning() returns true, but sendMessage() fails, that is an
+    indication that the running instance is frozen.
+
+    Here's an example that shows how to convert an existing
+    application to use QtSingleGuiApplication. It is very simple and does
+    not make use of all QtSingleGuiApplication's functionality (see the
+    examples for that).
+
+    \code
+    // Original
+    int main(int argc, char **argv)
+    {
+        QGuiApplication app(argc, argv);
+
+        return app.exec();
+    }
+
+    // Single instance
+    int main(int argc, char **argv)
+    {
+        QtSingleGuiApplication app(argc, argv);
+
+        if (app.isRunning())
+            return !app.sendMessage(someDataString);
+
+        return app.exec();
+    }
+    \endcode
+
+    Once this QtSingleGuiApplication instance is destroyed (normally when
+    the process exits or crashes), when the user next attempts to run the
+    application this instance will not, of course, be encountered. The
+    next instance to call isRunning() or sendMessage() will assume the
+    role as the new running instance.
+
+    For console (non-GUI) applications, QtSingleCoreApplication may be
+    used instead of this class, to avoid the dependency on the QtGui
+    library.
+
+    \sa QtSingleCoreApplication
+*/
+
+
+void QtSingleGuiApplication::sysInit(const QString &appId)
+{
+    peer = new QtLocalPeer(this, appId);
+    connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&)));
+}
+
+
+/*!
+    Creates a QtSingleGuiApplication object. The application identifier
+    will be QCoreApplication::applicationFilePath(). \a argc, \a
+    argv, and \a GUIenabled are passed on to the QAppliation constructor.
+
+    If you are creating a console application (i.e. setting \a
+    GUIenabled to false), you may consider using
+    QtSingleCoreApplication instead.
+*/
+
+QtSingleGuiApplication::QtSingleGuiApplication(int &argc, char **argv, bool GUIenabled)
+    : QGuiApplication(argc, argv, GUIenabled)
+{
+    sysInit();
+}
+
+
+/*!
+    Creates a QtSingleGuiApplication object with the application
+    identifier \a appId. \a argc and \a argv are passed on to the
+    QAppliation constructor.
+*/
+
+QtSingleGuiApplication::QtSingleGuiApplication(const QString &appId, int &argc, char **argv)
+    : QGuiApplication(argc, argv)
+{
+    sysInit(appId);
+}
+
+#if QT_VERSION < 0x050000
+
+/*!
+    Creates a QtSingleGuiApplication object. The application identifier
+    will be QCoreApplication::applicationFilePath(). \a argc, \a
+    argv, and \a type are passed on to the QAppliation constructor.
+*/
+QtSingleGuiApplication::QtSingleGuiApplication(int &argc, char **argv, Type type)
+    : QGuiApplication(argc, argv, type)
+{
+    sysInit();
+}
+
+
+#  if defined(Q_WS_X11)
+/*!
+  Special constructor for X11, ref. the documentation of
+  QGuiApplication's corresponding constructor. The application identifier
+  will be QCoreApplication::applicationFilePath(). \a dpy, \a visual,
+  and \a cmap are passed on to the QGuiApplication constructor.
+*/
+QtSingleGuiApplication::QtSingleGuiApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QGuiApplication(dpy, visual, cmap)
+{
+    sysInit();
+}
+
+/*!
+  Special constructor for X11, ref. the documentation of
+  QGuiApplication's corresponding constructor. The application identifier
+  will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a
+  argv, \a visual, and \a cmap are passed on to the QGuiApplication
+  constructor.
+*/
+QtSingleGuiApplication::QtSingleGuiApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QGuiApplication(dpy, argc, argv, visual, cmap)
+{
+    sysInit();
+}
+
+/*!
+  Special constructor for X11, ref. the documentation of
+  QGuiApplication's corresponding constructor. The application identifier
+  will be \a appId. \a dpy, \a argc, \a
+  argv, \a visual, and \a cmap are passed on to the QGuiApplication
+  constructor.
+*/
+QtSingleGuiApplication::QtSingleGuiApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap)
+    : QGuiApplication(dpy, argc, argv, visual, cmap)
+{
+    sysInit(appId);
+}
+#  endif // Q_WS_X11
+#endif // QT_VERSION < 0x050000
+
+
+/*!
+    Returns true if another instance of this application is running;
+    otherwise false.
+
+    This function does not find instances of this application that are
+    being run by a different user (on Windows: that are running in
+    another session).
+
+    \sa sendMessage()
+*/
+
+bool QtSingleGuiApplication::isRunning()
+{
+    return peer->isClient();
+}
+
+
+/*!
+    Tries to send the text \a message to the currently running
+    instance. The QtSingleGuiApplication object in the running instance
+    will emit the messageReceived() signal when it receives the
+    message.
+
+    This function returns true if the message has been sent to, and
+    processed by, the current instance. If there is no instance
+    currently running, or if the running instance fails to process the
+    message within \a timeout milliseconds, this function return false.
+
+    \sa isRunning(), messageReceived()
+*/
+bool QtSingleGuiApplication::sendMessage(const QString &message, int timeout)
+{
+    return peer->sendMessage(message, timeout);
+}
+
+
+/*!
+    Returns the application identifier. Two processes with the same
+    identifier will be regarded as instances of the same application.
+*/
+QString QtSingleGuiApplication::id() const
+{
+    return peer->applicationId();
+}
+
+
+/*!
+    \fn void QtSingleGuiApplication::messageReceived(const QString& message)
+
+    This signal is emitted when the current instance receives a \a
+    message from another instance of this application.
+
+    \sa sendMessage(), setActivationWindow(), activateWindow()
+*/
+
+
+/*!
+    \fn void QtSingleGuiApplication::initialize(bool dummy = true)
+
+    \obsolete
+*/
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.h ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.h
--- ukui-clipboard-1.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/third-party/qtsingleapplication/src/qtsingleguiapplication.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,63 @@
+// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+// SPDX-License-Identifier: BSD-3-Clause
+
+#ifndef QTSINGLEGUIAPPLICATION_H
+#define QTSINGLEGUIAPPLICATION_H
+
+#include <QGuiApplication>
+
+class QtLocalPeer;
+
+#if defined(Q_OS_WIN)
+#  if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT)
+#    define QT_QTSINGLEAPPLICATION_EXPORT
+#  elif defined(QT_QTSINGLEAPPLICATION_IMPORT)
+#    if defined(QT_QTSINGLEAPPLICATION_EXPORT)
+#      undef QT_QTSINGLEAPPLICATION_EXPORT
+#    endif
+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport)
+#  elif defined(QT_QTSINGLEAPPLICATION_EXPORT)
+#    undef QT_QTSINGLEAPPLICATION_EXPORT
+#    define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport)
+#  endif
+#else
+#  define QT_QTSINGLEAPPLICATION_EXPORT
+#endif
+
+class QT_QTSINGLEAPPLICATION_EXPORT QtSingleGuiApplication : public QGuiApplication
+{
+    Q_OBJECT
+
+public:
+    QtSingleGuiApplication(int &argc, char **argv, bool GUIenabled = true);
+    QtSingleGuiApplication(const QString &id, int &argc, char **argv);
+#if QT_VERSION < 0x050000
+    QtSingleGuiApplication(int &argc, char **argv, Type type);
+#  if defined(Q_WS_X11)
+    QtSingleGuiApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
+    QtSingleGuiApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0);
+    QtSingleGuiApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0);
+#  endif // Q_WS_X11
+#endif // QT_VERSION < 0x050000
+
+    bool isRunning();
+    QString id() const;
+
+    // Obsolete:
+    void initialize(bool dummy = true)
+        { isRunning(); Q_UNUSED(dummy) }
+
+public Q_SLOTS:
+    bool sendMessage(const QString &message, int timeout = 5000);
+
+
+Q_SIGNALS:
+    void messageReceived(const QString &message);
+
+
+private:
+    void sysInit(const QString &appId = QString());
+    QtLocalPeer *peer;
+};
+
+#endif // QTSINGLEGUIAPPLICATION_H
\ No newline at end of file
diff -Nru ukui-clipboard-1.0.0.0/titlelesswindow.h ukui-clipboard-2.0.0.0/titlelesswindow.h
--- ukui-clipboard-1.0.0.0/titlelesswindow.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/titlelesswindow.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,47 +0,0 @@
-#ifndef TITLELESSWINDOW_H
-#define TITLELESSWINDOW_H
-
-#endif // TITLELESSWINDOW_H
-#include <QQuickWindow>
-#include <QFocusEvent>
-#include <QDebug>
-// kysdk
-#include <kysdk/applications/windowmanager/windowmanager.h>
-#include <kysdk/applications/ukuistylehelper/ukui-decoration-manager.h>
-#include <ukuistylehelper/xatom-helper.h>
-
-#include <QGuiApplication>
-
-class TitleLessWindow : public QQuickWindow
-{
-    Q_OBJECT
-
-public:
-    TitleLessWindow(QWindow *parent = nullptr) : QQuickWindow(parent) {
-        // 无边框窗口不需要去除标题栏
-        if (this->flags().testFlag(Qt::FramelessWindowHint)) {
-            return;
-        }
-
-        if (QGuiApplication::platformName().startsWith(QStringLiteral("wayland"))) {
-            UKUIDecorationManager::getInstance()->removeHeaderBar(this);
-        } else {
-            MotifWmHints hints;
-            hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
-            hints.functions = MWM_FUNC_ALL;
-            hints.decorations = MWM_DECOR_BORDER;
-            XAtomHelper::getInstance()->setWindowMotifHint(static_cast<int>(this->winId()), hints);
-        }
-    }
-
-protected:
-    void focusOutEvent(QFocusEvent *event) override {
-        qDebug() << "Window lost focus!";
-        // 在这里发出一个信号到 QML
-        emit windowDeactivated();
-        QQuickWindow::focusOutEvent(event);
-    }
-
-signals:
-    void windowDeactivated();
-};
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_bo_CN.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_bo_CN.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_bo_CN.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_bo_CN.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="bo_CN">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_de.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_de.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_de.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_de.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="de_DE">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_es.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_es.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_es.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_es.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="es_ES">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_fr.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_fr.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_fr.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_fr.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="fr_FR">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_kk.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_kk.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_kk.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_kk.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="kk_KZ">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_ky.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_ky.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_ky.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_ky.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="ky_KG">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_mn.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_mn.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_mn.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_mn.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="mn_MN">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_ug.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_ug.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_ug.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_ug.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="ug_CN">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_zh_CN.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_zh_CN.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_zh_CN.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_zh_CN.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,178 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="zh_CN">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation>已成功复制,请到对应处粘贴</translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation>识别为文本</translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation>转为截图</translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation>转为纯文本</translation>
+    </message>
+    <message>
+        <source>pasted</source>
+        <translation type="vanished">原始粘贴</translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation>原始粘贴</translation>
+    </message>
+    <message>
+        <source>convert picture</source>
+        <translation type="vanished">转为截图</translation>
+    </message>
+    <message>
+        <source>convert plaintext</source>
+        <oldsource>convert richtext</oldsource>
+        <translation type="vanished">转为纯文本</translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation>智能剪切板主界面</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation>全部</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation>文本</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation>图片</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation>文件</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation>链接</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation>收藏</translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation>退出</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation>显示面板</translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation>点击取消格式转换</translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation>点击切换为原格式粘贴预览</translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation>更多转换选项</translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation>确定粘贴</translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation>刚刚</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation>分钟前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation>分钟前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation>小时前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation>小时前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation>天前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation>天前</translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation>3天前</translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/translations/ukui-clipboard_zh_Hant.ts ukui-clipboard-2.0.0.0/translations/ukui-clipboard_zh_Hant.ts
--- ukui-clipboard-1.0.0.0/translations/ukui-clipboard_zh_Hant.ts	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/translations/ukui-clipboard_zh_Hant.ts	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="zh_TW">
+<context>
+    <name>ClipboardBackend</name>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="44"/>
+        <source>Successfully copied, please paste at the corresponding location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="173"/>
+        <location filename="../clipboardbackend.cpp" line="192"/>
+        <source>text recognition</source>
+        <oldsource>convert text</oldsource>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="181"/>
+        <location filename="../clipboardbackend.cpp" line="199"/>
+        <source>convert to picture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="182"/>
+        <source>convert to plaintext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../clipboardbackend.cpp" line="174"/>
+        <location filename="../clipboardbackend.cpp" line="183"/>
+        <location filename="../clipboardbackend.cpp" line="193"/>
+        <location filename="../clipboardbackend.cpp" line="200"/>
+        <source>original paste</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardMainWindow</name>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="9"/>
+        <source>Ukui-clipboardd MainWindow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="48"/>
+        <source>All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="67"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="85"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="103"/>
+        <source>File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="121"/>
+        <source>Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/ClipboardMainWindow.qml" line="139"/>
+        <source>Collection</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardTray</name>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="30"/>
+        <source>消息</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="83"/>
+        <source>Log Out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/clipboardtray.cpp" line="84"/>
+        <source>Show Main Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ClipboardWindow</name>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to cancel conversion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="126"/>
+        <source>click to switch to the original format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="167"/>
+        <source>more options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="345"/>
+        <source>cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ClipboardWindow.qml" line="382"/>
+        <source>confirm pasting</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RelativeTimeLabel</name>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="33"/>
+        <source>just now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minute ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="35"/>
+        <source> minutes ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hour ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="37"/>
+        <source> hours ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> day ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="39"/>
+        <source> days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../taskTray/RelativeTimeLabel.qml" line="41"/>
+        <source>3 days ago</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -Nru ukui-clipboard-1.0.0.0/utils.cpp ukui-clipboard-2.0.0.0/utils.cpp
--- ukui-clipboard-1.0.0.0/utils.cpp	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/utils.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -12,44 +12,33 @@
 
 #include <X11/Xlib.h>
 
-QImage convertPlainTextToImage(const QString& plainText, const QSize& imageSize)
+QImage convertPlainTextToImage(const QString& plainText)
 {
-    // 创建 QImage 并设置其尺寸和格式
-    QImage image(imageSize, QImage::Format_RGB32);
+    // 创建 QTextDocument 对象,并设置富文本数据
+    QTextDocument textDocument;
+    textDocument.setPlainText(plainText);
+    // 创建图片对象,并设置大小
+    QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
     image.fill(Qt::white);
-
-    // 创建 QPainter 并设置绘制设备为 QImage
+    // 创建绘图对象
     QPainter painter(&image);
-
-    QRect rect(10, 10, imageSize.width() - 10, imageSize.height() - 10);
-
-    if (!plainText.isEmpty())
-        painter.drawText(rect, Qt::AlignLeft | Qt::TextWordWrap, plainText);
-
-    painter.end();
-
+    // 渲染富文本数据到图片中
+    textDocument.drawContents(&painter);
     return image;
 }
 
-QImage convertRichTextToImage(const QString& richText, const QSize& imageSize)
+QImage convertRichTextToImage(const QString& richText)
 {
-    // 创建 QTextDocument 对象并加载富文本
+    // 创建 QTextDocument 对象,并设置富文本数据
     QTextDocument textDocument;
     textDocument.setHtml(richText);
-    textDocument.setTextWidth(imageSize.width());
-
-    // 创建 QImage 并设置其尺寸和格式
-    QImage image(imageSize, QImage::Format_RGB32);
+    // 创建图片对象,并设置大小
+    QImage image(textDocument.idealWidth(), textDocument.size().height(), QImage::Format_ARGB32);
     image.fill(Qt::white);
-
-    // 创建 QPainter 并设置绘制设备为 QImage
+    // 创建绘图对象
     QPainter painter(&image);
-
-    // 渲染 QTextDocument 到 QPainter
+    // 渲染富文本数据到图片中
     textDocument.drawContents(&painter);
-
-    painter.end();
-
     return image;
 }
 
@@ -60,7 +49,6 @@
     textDocument.setHtml(richText);
 
     QString plainText = textDocument.toPlainText();
-    qDebug() << "Plain text: " << plainText;
 
     return plainText;
 }
diff -Nru ukui-clipboard-1.0.0.0/utils.h ukui-clipboard-2.0.0.0/utils.h
--- ukui-clipboard-1.0.0.0/utils.h	2024-05-11 14:20:38.000000000 +0800
+++ ukui-clipboard-2.0.0.0/utils.h	2024-12-19 16:45:36.000000000 +0800
@@ -2,9 +2,9 @@
 
 #include <QImage>
 
-QImage convertPlainTextToImage(const QString& plainText, const QSize& imageSize);
+QImage convertPlainTextToImage(const QString& plainText);
 
-QImage convertRichTextToImage(const QString& richText, const QSize& imageSize);
+QImage convertRichTextToImage(const QString& richText);
 
 QString convertRichTextToPlainText(const QString& richText);
 
diff -Nru ukui-clipboard-1.0.0.0/windowsettings.cpp ukui-clipboard-2.0.0.0/windowsettings.cpp
--- ukui-clipboard-1.0.0.0/windowsettings.cpp	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/windowsettings.cpp	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,69 @@
+#include <unistd.h>
+
+#include <QDebug>
+#include <QGuiApplication>
+#include <QWindow>
+#include <QWindowList>
+
+// kysdk
+#include <kysdk/applications/ukuistylehelper/ukui-decoration-manager.h>
+#include <ukuistylehelper/xatom-helper.h>
+
+#include "windowsettings.h"
+
+WindowSettings::WindowSettings(QObject *parent)
+    : QObject{parent}
+    , m_isWayland(QGuiApplication::platformName().startsWith(QStringLiteral("wayland")))
+{
+    setSkipTaskbarAndSwitcher();
+    setKeepAbove();
+    removeTitleBar();
+}
+
+void WindowSettings::setKeepAbove()
+{
+    connect(kdk::WindowManager::self(), &kdk::WindowManager::windowAdded, this, [=](const kdk::WindowId& windowId){
+        QString title = kdk::WindowManager::getWindowTitle(windowId);
+        quint32 pid = kdk::WindowManager::getPid(windowId);
+        if((quint32)getpid() == pid) {
+            foreach (QWindow *window, qGuiApp->allWindows()) {
+                if (window->title() == title) {
+                    m_windowMap[window] = windowId;
+                    kdk::WindowManager::self()->keepWindowAbove(windowId);
+                    if (m_isWayland) {
+                        UKUIDecorationManager::getInstance()->removeHeaderBar(window);
+                    }
+                }
+            }
+        }
+    });
+}
+
+void WindowSettings::setSkipTaskbarAndSwitcher()
+{
+    // 设置不显示在任务栏和多任务视图会概率导致qml窗口设置x,y坐标不生效
+    QWindowList m_windowList = qGuiApp->allWindows();
+    foreach (QWindow *window, m_windowList) {
+        kdk::WindowManager::self()->setSkipSwitcher(window, true);
+        kdk::WindowManager::self()->setSkipTaskBar(window, true);
+    }
+}
+
+void WindowSettings::removeTitleBar()
+{
+    QWindowList m_windowList = qGuiApp->allWindows();
+    foreach (QWindow *window, m_windowList) {
+        // 无边框窗口不需要去除标题栏
+        if (window->flags().testFlag(Qt::FramelessWindowHint)) {
+            return;
+        }
+
+        if (!m_isWayland) {
+            MotifWmHints hints;
+            hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
+            hints.functions = MWM_FUNC_ALL;
+            hints.decorations = MWM_DECOR_BORDER;
+            XAtomHelper::getInstance()->setWindowMotifHint(static_cast<int>(window->winId()), hints);
+        }
+    }
+}
diff -Nru ukui-clipboard-1.0.0.0/windowsettings.h ukui-clipboard-2.0.0.0/windowsettings.h
--- ukui-clipboard-1.0.0.0/windowsettings.h	1970-01-01 08:00:00.000000000 +0800
+++ ukui-clipboard-2.0.0.0/windowsettings.h	2024-12-19 16:45:36.000000000 +0800
@@ -0,0 +1,31 @@
+#ifndef WINDOWSETTINGS_H
+#define WINDOWSETTINGS_H
+
+#include <QMap>
+#include <QObject>
+#include <QWindow>
+
+// kysdk
+#include <kysdk/applications/windowmanager/windowmanager.h>
+
+class WindowSettings : public QObject
+{
+    Q_OBJECT
+public:
+    explicit WindowSettings(QObject *parent = nullptr);
+
+private:
+    void setKeepAbove();
+    void setSkipTaskbarAndSwitcher();
+    void removeTitleBar();
+
+signals:
+
+private:
+    bool m_isWayland = false;
+    QMap<QWindow*, kdk::WindowId> m_windowMap;
+    QWindow *m_functionMenuWindow = nullptr;
+    QWindow *m_previewWindow = nullptr;
+};
+
+#endif // WINDOWSETTINGS_H