]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/py/wxd/ImageHandlers.py
1 """Decorator classes for documentation and shell scripting.
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __revision__
= "$Revision$"[11:-2]
9 # These are not the real wxPython classes. These are Python versions
10 # for documentation purposes. They are also used to apply docstrings
11 # to the real wxPython classes, which are SWIG-generated wrappers for
15 from Base
import Object
16 import Parameters
as wx
19 class ImageHandler(Object
):
26 def GetExtension(self
):
30 def GetMimeType(self
):
42 def SetExtension(self
):
46 def SetMimeType(self
):
63 class BMPHandler(ImageHandler
):
71 class GIFHandler(ImageHandler
):
79 class ICOHandler(BMPHandler
):
87 class CURHandler(ICOHandler
):
95 class ANIHandler(CURHandler
):
103 class JPEGHandler(ImageHandler
):
111 class PCXHandler(ImageHandler
):
119 class PNGHandler(ImageHandler
):
127 class PNMHandler(ImageHandler
):
135 class TIFFHandler(ImageHandler
):