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

Class Index

krn'MyTreeList (./kdenetwork/krn/mytree.h:6)

class MyTreeList : public KTreeView
{
public:
    MyTreeList(QWidget *parent = 0,
               const char *name = 0,
               WFlags f = 0) :
    KTreeView(parent , name , f) {};
    void setTopCell(int c) { KTreeView::setTopCell(c); }
    void appendChildItem(KTreeViewItem* parent,
                         KTreeViewItem* child){KTreeView::appendChildItem(parent,child);};

};  

krn'MyTreeList::appendChildItem() (./kdenetwork/krn/mytree.h:14)

    void appendChildItem(KTreeViewItem* parent,
                         KTreeViewItem* child){KTreeView::appendChildItem(parent,child);};

};