Source Code (Use browser search to find items of interest.)
Class Index
kpresenter'KPresenterBackgroundIface (./koffice/kpresenter/KPresenterBackgroundIface.h:31)
class KPresenterBackgroundIface : virtual public DCOPObject
{
K_DCOP
public:
KPresenterBackgroundIface( KPBackGround *back_ );
k_dcop:
int getBackType();
int getBackView();
QColor getBackColor1();
QColor getBackColor2();
int getBackColorType();
QString getBackPixFilename();
QString getBackClipFilename();
int getPageEffect();
bool getBackUnbalanced();
int getBackXFactor();
int getBackYFactor();
QSize getSize();
private:
KPBackGround *back;
};
kpresenter'KPresenterBackgroundIface::KPresenterBackgroundIface() (./koffice/kpresenter/KPresenterBackgroundIface.cc:27)
KPresenterBackgroundIface::KPresenterBackgroundIface( KPBackGround *back_ )
: DCOPObject()
{
back = back_;
}
kpresenter'KPresenterBackgroundIface::getBackType() (./koffice/kpresenter/KPresenterBackgroundIface.cc:33)
int KPresenterBackgroundIface::getBackType()
{
return (int)back->getBackType();
}
kpresenter'KPresenterBackgroundIface::getBackView() (./koffice/kpresenter/KPresenterBackgroundIface.cc:38)
int KPresenterBackgroundIface::getBackView()
{
return (int)back->getBackView();
}
kpresenter'KPresenterBackgroundIface::getBackColor1() (./koffice/kpresenter/KPresenterBackgroundIface.cc:43)
QColor KPresenterBackgroundIface::getBackColor1()
{
return back->getBackColor1();
}
kpresenter'KPresenterBackgroundIface::getBackColor2() (./koffice/kpresenter/KPresenterBackgroundIface.cc:48)
QColor KPresenterBackgroundIface::getBackColor2()
{
return back->getBackColor2();
}
kpresenter'KPresenterBackgroundIface::getBackColorType() (./koffice/kpresenter/KPresenterBackgroundIface.cc:53)
int KPresenterBackgroundIface::getBackColorType()
{
return (int)back->getBackColorType();
}
kpresenter'KPresenterBackgroundIface::getBackPixFilename() (./koffice/kpresenter/KPresenterBackgroundIface.cc:58)
QString KPresenterBackgroundIface::getBackPixFilename()
{
return back->getBackPixFilename();
}
kpresenter'KPresenterBackgroundIface::getBackClipFilename() (./koffice/kpresenter/KPresenterBackgroundIface.cc:63)
QString KPresenterBackgroundIface::getBackClipFilename()
{
return back->getBackClipFilename();
}
kpresenter'KPresenterBackgroundIface::getPageEffect() (./koffice/kpresenter/KPresenterBackgroundIface.cc:68)
int KPresenterBackgroundIface::getPageEffect()
{
return (int)back->getPageEffect();
}
kpresenter'KPresenterBackgroundIface::getBackUnbalanced() (./koffice/kpresenter/KPresenterBackgroundIface.cc:73)
bool KPresenterBackgroundIface::getBackUnbalanced()
{
return back->getBackUnbalanced();
}
kpresenter'KPresenterBackgroundIface::getBackXFactor() (./koffice/kpresenter/KPresenterBackgroundIface.cc:78)
int KPresenterBackgroundIface::getBackXFactor()
{
return back->getBackXFactor();
}
kpresenter'KPresenterBackgroundIface::getBackYFactor() (./koffice/kpresenter/KPresenterBackgroundIface.cc:83)
int KPresenterBackgroundIface::getBackYFactor()
{
return back->getBackYFactor();
}
kpresenter'KPresenterBackgroundIface::getSize() (./koffice/kpresenter/KPresenterBackgroundIface.cc:88)
QSize KPresenterBackgroundIface::getSize()
{
return back->getSize();
}