// // C++ Interface: filterlogentry // // Description: // // // Author: Ulrich Weigelt , (C) 2007 // // Copyright: See COPYING file that comes with this distribution // // #ifndef FILTERLOGENTRY_H #define FILTERLOGENTRY_H //TQt headers #include #include #include //KDE headers #include //KShowmail headers #include "types.h" #include "constants.h" using namespace Types; /** * @brief An Object of this class contains the datas about a deleted or moved mail. * These objects are stored in the lists of the filter log. * * @author Ulrich Weigelt */ class FilterLogEntry{ public: /** * Default constructor */ FilterLogEntry(); /** * General constructor * @param action executed action * @param dateTime date and time on which the mail was sent * @param sender sender of the mail * @param account Account which has received the mail * @param subject Subject of the mail * @param mailbox mailbox where the mails was moved */ FilterLogEntry( FilterAction_Type action, const TQDateTime& dateTime, const TQString& sender, const TQString& account, const TQString& subject, const TQString& mailbox = TQString::null ); /** * Copy Constructor * @param ent source entry */ FilterLogEntry( const FilterLogEntry& ent ); /** * Destructor */ ~FilterLogEntry(); /** * Assignment operator * @param ent source entry */ FilterLogEntry& operator=( const FilterLogEntry& ent ); /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is equal to te time of the given entry. */ bool operator==( const FilterLogEntry& ent ) const; /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is not equal to the time of the given entry. */ bool operator!=( const FilterLogEntry& ent ) const; /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is later than the time of the given entry. */ bool operator>( const FilterLogEntry& ent ) const; /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is later than or equal to the time of the given entry. */ bool operator>=( const FilterLogEntry& ent ) const; /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is earlier than the time of the given entry. */ bool operator<( const FilterLogEntry& ent ) const; /** * Compares this entry with the given entry * @param ent entry to compare * @return TRUE - the time of this entry is earlier than or equal to the time of the given entry. */ bool operator<=( const FilterLogEntry& ent ) const; /** * Prints the datas of this entry to Stdout. */ void print(); /** * Returns whether the mail of this entry is older than the given number of days. * @param days number of days to compare * @return TRUE - the mail is older than the given date */ bool isOlder( uint days ); /** * Stores the entry into the given DOM document as child of the given DOM element. */ void save( TQDomDocument& doc, TQDomElement& parent ); /** * Returns the date and time of send * @return send date and time */ TQDateTime getDate(); /** * Returns the sender. * @return Sender */ TQString getSender(); /** * Returns the account. * @return Account */ TQString getAccount(); /** * Returns the subject * @return Subject */ TQString getSubject(); /** * Returns the mailbox * @return mailbox */ TQString getMailbox(); private: /** * executed action */ FilterAction_Type act; /** * Delivery date and time */ TQDateTime sentDateTime; /** * Sender */ TQString sender; /** * Account */ TQString account; /** * Subject */ TQString subject; /** * mailbox if the mails was moved */ TQString mailbox; }; #endif