Skip to content Skip to sidebar Skip to footer

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 documen

Solution 1:

Plasma works as a big QGraphicsView, and applets are QGraphicsWidget items, meaning it's the documentation for QGraphicsLayout that you should be looking at, not QLayout as suggested.

For a grid layout you want to use QGraphicsGridLayout. Have a look at the addItem method in particular.


Solution 2:

Perhaps a good place to start would be the Qt documentation?


Post a Comment for "Please Point Me To (good) Documentation About QT Layouts For Plasma Development"