Tagged Questions
The plasmoid tag has no wiki summary.
3
votes
2answers
1k views
Autocompletion not working with PyQT4 and PyKDE4 in most of the IDEs
I am trying to develop a plasmoid using python. I have tried eclipse with pydev, vim with pythoncomplete, PIDA and also Komodo, but none of them could give me autocmpletion for method names or ...
1
vote
1answer
224 views
multiple layouts/layout transitions in a python plasmoid
I'm doing a little python plasmoid that deals with remote resources.
Here's the code : glpoid
It offers a view of tickets (the default one), a view that let the user filling and sending a new ticket, ...
1
vote
0answers
78 views
Resizing Plasma.Label
I'm writing plasmoid in python and when i'm trying to resize Plasma.Label nothing happens
label3= Plasma.Label(self.applet)
label3.setImage("/home/dark/fract.png")
...
0
votes
2answers
96 views
How to “require” manually installed gems (KDE plasmoid)?
I'm trying to write a Ruby plasmoid for KDE. I need to use barely one rubygem. Whenever I write require 'dbus', it throw me and an error:
code/main.rb:6:in 'require': no such file to load -- dbus ...
0
votes
0answers
78 views
QtScript differences between KDE 4.4 and KDE 4.6
I developed a kde plasmoid in javascript with kde 4.4. Now I installed a new Version( 4.6 ) and the plasmoid no longer works.
1.) I have a (string)variable, and want to test the length. I did it with
...
0
votes
1answer
105 views
Execute specific command from plasmoid
I'm writing a Remote Control Plasmoid, I want it to send certain commands over ssh to a remote host, I've tried:
QProcess p;
p.start("/home/user/bin/command");
p.waitfForFinished(-1);
where command ...
0
votes
1answer
71 views
Where do I store plasmoid's custom data?
I'm new to KDE development. I wrote a plasmoid that needs to store its data somewhere, namely - ical feeds need to be stored for offline usage.
While I could just write it to ~/.ical/ or some other ...
0
votes
2answers
209 views
Please point me to (good) documentation about QT layouts for plasma development
I am trying to develop a plasmoid in python. I got some good tutorials here (techbase.kde.org/Development/Tutorials/Plasma) and they are really helpful, but they don't have documentation or examples ...
-1
votes
1answer
393 views
Drag & Drop in KListWidget (PyQt/PyKde programming)
I'm developing a little app (precisely it's a KDE4 plasmoid) in PyQt/PyKde.
In my app I have a KListWidget filled with some rows, see this picture:
I need to implement a drag&drop action for ...