// // C++ Interface: mailboxwizard // // Description: // // // Author: Ulrich Weigelt , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #ifndef MAILBOXWIZARD_H #define MAILBOXWIZARD_H //C-headers #include //TQt headers #include #include #include #include #include #include #include //KDE headers #include #include #include #include #include #include #include #include //Kshowmail headers #include "../constants.h" #include "mailboxwizardlistitem.h" /** * Wizard to configure the mailbox to which a filteres mail shall be moved. * @author Ulrich Weigelt */ class MailBoxWizard : public TQWizard { Q_OBJECT public: /** * Constructor */ MailBoxWizard( TQWidget* parent = 0, const char* name = 0 ); /** * Destructor */ ~MailBoxWizard(); /** * Returns the absolute path of the selected mailbox. * @return the path */ TQString getPath(); private: /** * This contains the path to the mail directory */ KLineEdit* txtMailDir; /** * This button opens a file dialog to slecht the mail directory */ KPushButton* btnMailDir; /** * This view shows the available mailboxes in the selected directory */ TDEListView* lstMailboxes; /** * Title of page 1. * Set by constructor */ TQString title1; /** * Title of page 2. * Set by Constructor. */ TQString title2; /** * Returns whether the given directory is a maildir directory * @param path the directory for test * @return TRUE - directory is a maildir directory */ bool isMailDir( const TQDir& path ); /** * Adds a new mailbox list view item to the mailbox list or to a given parent item. * @param boxname name of the mailbox * @param path path to the directory of this mailbox */ void addMailBoxListItem( TQString boxname, TQDir path ); private slots: /** * Connected with btnMailDir. * Opens a file dialog to choose the mail directory. */ void slotOpenDirDialog(); /** * Connected with the signal selected of this wizard. * Searchs for mailboxes inside the path typed in page1. * @param pageTitle title of the selected page */ void slotPageChanged( const TQString& pageTitle ); }; #endif