summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/composer.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mail2/composer.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mail2/composer.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/unsupported/mail2/composer.h b/noncore/unsupported/mail2/composer.h
index 2640d7e..00235bf 100644
--- a/noncore/unsupported/mail2/composer.h
+++ b/noncore/unsupported/mail2/composer.h
@@ -22,23 +22,27 @@ private:
class Composer : public ComposerBase
{
Q_OBJECT
public:
- Composer(QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal);
+ Composer(QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal, bool sendQueue = false);
~Composer();
void hide();
void exec();
void setSendMail(SendMail &sendMail);
+public slots:
+ void slotSendQueued();
+
protected slots:
void slotPopupHandler(int itemid);
void slotSendMail();
+ void slotQueueMail();
void slotSendError(const QString &);
void slotSendFinished();
void slotResizing();
void slotFillStuff();
void slotFromChanged(int id);
void slotOpenAddressPicker();
@@ -46,12 +50,13 @@ protected slots:
void slotDelAttach();
protected:
QValueList<Account> accountsLoaded;
private:
+ bool _sendQueued;
bool _inLoop;
QString _inReplyTo;
};
#endif