Tagged Questions
The pykde 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
218 views
How to use QStackedWidget/QStackedLayout in PyQT/PyKDE?
I am trying to create a properties panel as part of a larger application, which uses PyKDE and PyQT. QStackedWidget and QStackedLayout look right, but the situation is a bit complicated:
The ...
1
vote
1answer
244 views
PyKDE4 documentation
I'm trying to get started using Python for KDE development. What is the canonical source for PyKDE4 reference documentation? The Python page of KDE TechBase is surprisingly sparse on details, and ...
1
vote
1answer
606 views
Handling KeyboardInterrupt in a KDE Python application?
I'm working on a PyKDE4/PyQt4 application, Autokey, and I noticed that when I send the program a CTRL+C, the keyboard interrupt is not processed until I interact with the application, by ie. clicking ...
0
votes
0answers
17 views
what needs to be initialized before KNotification.event can be called?
I have a mostly-Qt application, for which I want to use a few system notifications that use KDE's nicer system. If my Python code makes a call
KNotification.event(strType,
strMessage,
...
0
votes
2answers
31 views
Is it possible to use KHTMLPart completely from console?
I'm using the KHTMLPart component from the PyKDE (in Python) library to download some webpages in the background and return sizes of certain elements in pixels. I don't really need any visual output ...
0
votes
1answer
96 views
Python PyKDE and KWindowSystem signal calling
I'm currently slamming my head against the table trying to get a QObject.connect to work with KWindowSystem, with PyKDE, my code is as follows:
from PyKDE4.kdecore import *
from PyKDE4.kdeui import *
...
-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 ...