4

我设法使用 Python 编写了一个 plasmoid,并带有一个可以选择文件的配置对话框。我还设法读出了选定的值。

但是我怎样才能使选择持久化呢?我很确定有一些 KDE/Qt 预定义的功能或方法可以做到这一点,但我没有找到有关此的文档。

这是我的代码(可以从等离子窗口开始):

元数据.桌面:

[Desktop Entry]
Encoding=UTF-8
Name=Config Test
Type=Service
ServiceTypes=Plasma/Applet
X-Plasma-API=python
X-Plasma-MainScript=code/main.py

内容/代码/main.py:

# -*- coding: utf-8 -*-

from PyQt4 import QtCore
from PyKDE4.plasma import Plasma
from PyKDE4 import plasmascript

class configTest(plasmascript.Applet):

        def __init__(self, parent, args = None):
                plasmascript.Applet.__init__(self, parent)

        def init(self):
                self.setAspectRatioMode(Plasma.IgnoreAspectRatio)

        def paintInterface(self, painter, option, rect):
                painter.save()
                painter.setPen(QtCore.Qt.black)
                painter.drawText(rect, QtCore.Qt.AlignLeft, str(self.config('main').readEntry('testEntry')))
                painter.restore()

def CreateApplet(parent):
        return configTest(parent) 

内容/ui/config.ui:

<?xml version="1.0" encoding="UTF-8"?> 
<ui version="4.0"> 
 <class>Config</class> 
  <widget class="QWidget" name="verticalLayoutWidget"> 
   <layout class="QVBoxLayout" name="verticalLayout"> 
    <item> 
     <widget class="KUrlRequester" name="kcfg_testEntry"/> 
    </item> 
   </layout> 
  </widget> 
 <resources/> 
 <connections/> 
</ui>

内容/配置/main.xml:

<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
                          http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
  <kcfgfile name="configTestrc"/>
  <include>kglobalsettings.h</include>
  <group name="main">
    <entry name="testEntry" type="Url"></entry>
  </group>
</kcfg>

提前感谢所有帮助!

4

1 回答 1

4

最后,我可以自己回答这个问题。上面的代码确实可以工作,并且配置会自动存储——只要软件包已经安装(通过plasmapkg)并由等离子桌面工具启动。

当等离子团通过等离子窗口启动时,情况并非如此。

于 2014-03-18T21:13:23.283 回答