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

Class Index

empath'EmpathAccountListItem (./kdepim/empath/ui/settings/EmpathAccountsSettingsDialog.h:83)

class EmpathAccountListItem : public QListViewItem
{
    public:
        EmpathAccountListItem(QListView *, EmpathMailbox *);
};

#endif
// vim:ts=4:sw=4:tw=78

empath'EmpathAccountListItem::EmpathAccountListItem() (./kdepim/empath/ui/settings/EmpathAccountsSettingsDialog.cpp:193)

EmpathAccountListItem::EmpathAccountListItem
    (QListView * parent, EmpathMailbox * m)
    :   QListViewItem(parent, m->name())
{
    if (m == 0)
        return;

    setText(0, m->name());
    setText(1, m->typeAsString());
    setText(2, m->autoCheck() ?
        QString().setNum(m->autoCheckInterval()) : QString::null);

    setPixmap(0, empathIcon("settings-accounts"));
}

    void