// // C++ Interface: mailboxwizardlistitem // // Description: // // // Author: Ulrich Weigelt , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #ifndef MAILBOXWIZARDLISTITEM_H #define MAILBOXWIZARDLISTITEM_H //TQt-Headers #include //KDE-Headers #include /** * This is a list item in the mailbox list of the mailbox wizard * @author Ulrich Weigelt */ class MailBoxWizardListItem : public TDEListViewItem { public: /** * Constructor * Constructs a new top-level entry in the mailbox list. * @param parent pointer to mailbox list. * @param label column content * @param path the absolute path to this mailbox */ MailBoxWizardListItem( TQListView* parent, TQString label, TQString path ); /** * Destructor */ ~MailBoxWizardListItem(); /** * Returns the path to this mailbox. * @return path to this mailbox */ TQString getPath(); private: /** * The path to this mailbox */ TQString path; }; #endif