summaryrefslogtreecommitdiffstats
path: root/libkdepim/maillistdrag.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/maillistdrag.h')
-rw-r--r--libkdepim/maillistdrag.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/libkdepim/maillistdrag.h b/libkdepim/maillistdrag.h
index cf8918db..86280826 100644
--- a/libkdepim/maillistdrag.h
+++ b/libkdepim/maillistdrag.h
@@ -22,9 +22,9 @@
#ifndef maillistdrag_h
#define maillistdrag_h
-#include "qdragobject.h"
-#include "qvaluelist.h"
-#include "qglobal.h"
+#include "tqdragobject.h"
+#include "tqvaluelist.h"
+#include "tqglobal.h"
#include "time.h"
#include <kdepimmacros.h>
@@ -34,7 +34,7 @@
*
* // Code example for drag and drop enabled widget
*
- * void SomeWidget::contentsDropEvent(QDropEvent *e)
+ * void SomeWidget::contentsDropEvent(TQDropEvent *e)
* {
* if (e->provides(MailListDrag::format())) {
* MailList mailList;
@@ -47,40 +47,40 @@ namespace KPIM {
class KDE_EXPORT MailSummary
{
public:
- MailSummary( Q_UINT32 serialNumber, QString messageId, QString subject,
- QString from, QString to, time_t date );
+ MailSummary( Q_UINT32 serialNumber, TQString messageId, TQString subject,
+ TQString from, TQString to, time_t date );
MailSummary() {}
~MailSummary() {}
/*** Set fields for this mail summary ***/
- void set( Q_UINT32, QString, QString, QString, QString, time_t );
+ void set( Q_UINT32, TQString, TQString, TQString, TQString, time_t );
/*** KMail unique identification number ***/
Q_UINT32 serialNumber() const;
/*** MD5 checksum of message identification string ***/
- QString messageId();
+ TQString messageId();
/*** Subject of the message including prefixes ***/
- QString subject();
+ TQString subject();
/*** Simplified from address ***/
- QString from();
+ TQString from();
/** Simplified to address ***/
- QString to();
+ TQString to();
/*** Date the message was sent ***/
time_t date();
private:
Q_UINT32 mSerialNumber;
- QString mMessageId, mSubject, mFrom, mTo;
+ TQString mMessageId, mSubject, mFrom, mTo;
time_t mDate;
};
// List of mail summaries
-typedef QValueList<MailSummary> MailList;
+typedef TQValueList<MailSummary> MailList;
// Object for the drag object to call-back for message fulltext
class KDE_EXPORT MailTextSource {
@@ -88,7 +88,7 @@ public:
MailTextSource() {}
virtual ~MailTextSource() {}
- virtual QCString text(Q_UINT32 serialNumber) const = 0;
+ virtual TQCString text(Q_UINT32 serialNumber) const = 0;
};
// Drag and drop object for mails
@@ -96,14 +96,14 @@ class KDE_EXPORT MailListDrag : public QStoredDrag
{
public:
// Takes ownership of "src" and deletes it when done
- MailListDrag( MailList, QWidget * parent = 0, MailTextSource *src = 0 );
+ MailListDrag( MailList, TQWidget * parent = 0, MailTextSource *src = 0 );
~MailListDrag();
const char *format(int i) const;
bool provides(const char *mimeType) const;
- QByteArray encodedData(const char *) const;
+ TQByteArray encodedData(const char *) const;
/* Reset the list of mail summaries */
void setMailList( MailList );
@@ -113,19 +113,19 @@ public:
/* Returns TRUE if the information in e can be decoded into a QString;
otherwsie returns FALSE */
- static bool canDecode( QMimeSource* e );
+ static bool canDecode( TQMimeSource* e );
/* Attempts to decode the dropped information;
Returns TRUE if successful; otherwise return false */
- static bool decode( QDropEvent* e, MailList& s );
+ static bool decode( TQDropEvent* e, MailList& s );
/* Attempts to decode the serialNumbers of the dropped information;
Returns TRUE if successful; otherwise return false */
- static bool decode( QDropEvent* e, QByteArray& a );
+ static bool decode( TQDropEvent* e, TQByteArray& a );
/* Attempts to decode the encoded MailList;
Returns TRUE if successful; otherwise return false */
- static bool decode( QByteArray& a, MailList& s );
+ static bool decode( TQByteArray& a, MailList& s );
private:
MailTextSource *_src;