Source Code (Use browser search to find items of interest.)

Class Index

kdesktop'KBackgroundIface (./kdebase/kdesktop/KBackgroundIface.h:10)

class KBackgroundIface : virtual public DCOPObject
{
    K_DCOP
public:

k_dcop:
    /** Reread the configuration */
    virtual void configure() = 0;

    /** 
     * Change desktop. Normally, this is handled using the NET protocol so
     * you shouldn't need this. 
     * @parm desk The desktop to change to. 1 <= desktop <= 8
     * */
    virtual void changeDesktop(int desk) = 0;

    /** Enable/disable docking to panel. */
    virtual void setDocking(int dock) = 0;

    /** Enable/disable export of the background pixmap. */
    virtual void setExport(int xport) = 0;

    /** Enable/disable common desktop background. */
    virtual void setCommon(int common) = 0;
};