Dear visitor, welcome to KDE-Forum.org.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
desktop calss
Hi,
Is does anybody know if there is a class in KDE that handles desktop operations
that is responsible to arrange all the windows on it, the icons, wallpaper and so on. if not is there a QT calss that does that?
Thanx,
Basher
The windows are arranged by the window manager, on KDE this is usually KWin.
The desktop is a program called KDesktop, which is part of the kdebase package. (KWin as well)
It might be better to ask what you really want to achieve.
Cheers,
_
Qt/KDE Developer
Debian User
I can suggest a _bad_ way (through DCOP call):
KShellProcess pr;
pr << "dcop" << kdesktop" << "KDesktopIface" << "selectAll";
pr.start(KProcess:
ontCare);
Thanx - The KWin is a good start I'll have alook at the code of the class too.