]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/net/msg.h
setter by ref for
[wxWidgets.git] / contrib / include / wx / net / msg.h
index ffc77727f59c387d9a79f8aa4e269e778e7f37b8..4d487d34ec63d9bb32e76805ecd0123604ea37f2 100644 (file)
@@ -9,30 +9,44 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "msg.h"
 #endif
 
 #ifndef _WX_MSG_H_
 #define _WX_MSG_H_
 
 #pragma interface "msg.h"
 #endif
 
 #ifndef _WX_MSG_H_
 #define _WX_MSG_H_
 
+#ifdef WXMAKINGDLL_NETUTILS
+    #define WXDLLIMPEXP_NETUTILS WXEXPORT
+    #define WXDLLIMPEXP_DATA_NETUTILS(type) WXEXPORT type
+#elif defined(WXUSINGDLL)
+    #define WXDLLIMPEXP_NETUTILS WXIMPORT
+    #define WXDLLIMPEXP_DATA_NETUTILS(type) WXIMPORT type
+#else // not making nor using DLL
+    #define WXDLLIMPEXP_NETUTILS
+    #define WXDLLIMPEXP_DATA_NETUTILS(type) type
+#endif
+
+
 /*
  * wxMailMessage
  * Encapsulates an email message
  */
 
 /*
  * wxMailMessage
  * Encapsulates an email message
  */
 
-class wxMailMessage
+class WXDLLIMPEXP_NETUTILS wxMailMessage
 {
 public:
 
     // A common usage
     wxMailMessage(const wxString& subject, const wxString& to,
 {
 public:
 
     // A common usage
     wxMailMessage(const wxString& subject, const wxString& to,
-        const wxString& body, const wxString& attachment = wxEmptyString,
+        const wxString& body, const wxString& from = wxEmptyString,
+        const wxString& attachment = wxEmptyString,
         const wxString& attachmentTitle = wxEmptyString)
     {
         m_to.Add(to);
         m_subject = subject;
         m_body = body;
         const wxString& attachmentTitle = wxEmptyString)
     {
         m_to.Add(to);
         m_subject = subject;
         m_body = body;
+        m_from = from;
         if (!attachment.IsEmpty())
         {
             m_attachments.Add(attachment);
         if (!attachment.IsEmpty())
         {
             m_attachments.Add(attachment);
@@ -52,9 +66,11 @@ public:
 
     void SetSubject(const wxString& subject) { m_subject = subject; }
     void SetBody(const wxString& body) { m_body = body; }
 
     void SetSubject(const wxString& subject) { m_subject = subject; }
     void SetBody(const wxString& body) { m_body = body; }
+    void SetFrom(const wxString& from) { m_from = from; }
 
 public:
     wxArrayString  m_to;               //The To: Recipients
 
 public:
     wxArrayString  m_to;               //The To: Recipients
+    wxString       m_from;             //The From: email address (optional)
     wxArrayString  m_cc;               //The CC: Recipients
     wxArrayString  m_bcc;              //The BCC Recipients
     wxString       m_subject;         //The Subject of the message
     wxArrayString  m_cc;               //The CC: Recipients
     wxArrayString  m_bcc;              //The BCC Recipients
     wxString       m_subject;         //The Subject of the message