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

Class Index

kdevelop'ListViewDocItem (./kdevelop/kdevelop/doctreeview.cpp:45)

class ListViewDocItem : public KListViewItem
{
public:
    ListViewDocItem( KListViewItem *parent,
                     const QString &text, const QString &filename );
};


ListViewDocItem::ListViewDocItem(KListViewItem *parent,
                                 const QString &text, const QString &filename)
    : KListViewItem(parent, text, filename)
{
    setPixmap(0, BarIcon("mini-doc"));
}


/**
 * A list view item that is decorated with a book icon.
 * This typically represents one manual. When the user "opens"
 * the book, the according icon is changed.
 */

kdevelop'ListViewDocItem::ListViewDocItem() (./kdevelop/kdevelop/doctreeview.cpp:53)

ListViewDocItem::ListViewDocItem(KListViewItem *parent,
                                 const QString &text, const QString &filename)
    : KListViewItem(parent, text, filename)
{
    setPixmap(0, BarIcon("mini-doc"));
}


/**
 * A list view item that is decorated with a book icon.
 * This typically represents one manual. When the user "opens"
 * the book, the according icon is changed.
 */