]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imaggif.h
Partial fix for #15196: wxRichTextCell caret issues (dghart)
[wxWidgets.git] / include / wx / imaggif.h
index 103e934fb6043ee0e5b1956e140d7b34c7c0fe68..1d76a632c8d73ed5dc70b35dbbff3c385105e0cc 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        wx/imaggif.h
 // Purpose:     wxImage GIF handler
 // Author:      Vaclav Slavik, Guillermo Rodriguez Garcia, Gershon Elber, Troels K
-// RCS-ID:      $Id$
 // Copyright:   (c) 1999-2011 Vaclav Slavik, Guillermo Rodriguez Garcia, Gershon Elber, Troels K
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -19,6 +18,8 @@
 
 #if wxUSE_GIF
 
+#define wxIMAGE_OPTION_GIF_COMMENT wxT("GifComment")
+
 struct wxRGB;
 struct GifHashTableType;
 class WXDLLIMPEXP_FWD_CORE wxImageArray; // anidecod.h
@@ -43,8 +44,7 @@ public:
 
     // Save animated gif
     bool SaveAnimation(const wxImageArray& images, wxOutputStream *stream,
-        bool verbose = true, int delayMilliSecs = 1000,
-        const wxString& comment = wxEmptyString);
+        bool verbose = true, int delayMilliSecs = 1000);
 
 protected:
     virtual int DoGetImageCount(wxInputStream& stream);
@@ -53,7 +53,7 @@ protected:
     bool DoSaveFile(const wxImage&, wxOutputStream *, bool verbose,
         bool first, int delayMilliSecs, bool loop,
         const wxRGB *pal, int palCount,
-        int mask_index, const wxString& comment = wxEmptyString);
+        int mask_index);
 #endif // wxUSE_STREAMS
 protected:
 
@@ -82,8 +82,7 @@ protected:
     bool SetupCompress(wxOutputStream *, int bpp);
     bool CompressLine(wxOutputStream *, const wxUint8 *line, int lineLen);
 #endif
-public:
-    static wxString ms_comment;
+
 private:
     DECLARE_DYNAMIC_CLASS(wxGIFHandler)
 };