]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/mimetype.h
   1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     interface of wxMimeTypesManager 
   4 // Author:      wxWidgets team 
   6 // Licence:     wxWindows license 
   7 ///////////////////////////////////////////////////////////////////////////// 
  10     @class wxMimeTypesManager 
  12     This class allows the application to retrieve the information about all known 
  13     MIME types from a system-specific location and the filename extensions to the 
  14     MIME types and vice versa. After initialization the functions 
  15     GetFileTypeFromMimeType() and GetFileTypeFromExtension() 
  16     may be called: they will return a wxFileType object which may be further 
  17     queried for file description, icon and other attributes. 
  19     Under Windows, the MIME type information is queried from registry. 
  20     Under Linux and Unix, it is queried from the XDG data directories. 
  22     Currently, wxMimeTypesManager is limited to reading MIME type information. 
  24     The application should not construct its own manager: it should use the 
  25     object pointer ::wxTheMimeTypesManger. 
  28     @section mimetypemanager_helpers Helper functions 
  30     All of these functions are static (i.e. don't need a wxMimeTypesManager object 
  31     to call them) and provide some useful operations for string representations of 
  32     MIME types. Their usage is recommended instead of directly working with MIME 
  33     types using wxString functions. 
  35     - wxMimeTypesManager::IsOfType() 
  38     @section mimetypemanager_ctor Constructor and destructor 
  40     NB: You won't normally need to use more than one wxMimeTypesManager object 
  43     - wxMimeTypesManager::wxMimeTypesManager() 
  44     - wxMimeTypesManager::~wxMimeTypesManager() 
  47     @section mimetypemanager_query Query database 
  49     These functions are the heart of this class: they allow to find a file type 
  50     object from either file extension or MIME type. 
  51     If the function is successful, it returns a pointer to the wxFileType object 
  52     which must be deleted by the caller, otherwise NULL will be returned. 
  54     - wxMimeTypesManager::GetFileTypeFromMimeType() 
  55     - wxMimeTypesManager::GetFileTypeFromExtension() 
  58     @section mimetypemanager_init Initialization functions 
  60     Unix: These functions may be used to load additional files (except for the 
  61     default ones which are loaded automatically) containing MIME information in 
  62     either mailcap(5) or mime.types(5) format. 
  64     - wxMimeTypesManager::ReadMailcap() 
  65     - wxMimeTypesManager::ReadMimeTypes() 
  66     - wxMimeTypesManager::AddFallbacks() 
  75 class wxMimeTypesManager
 
  79         Constructor puts the object in the "working" state. 
  84         Destructor is not virtual, so this class should not be derived from. 
  86     ~wxMimeTypesManager(); 
  89         This function may be used to provide hard-wired fallbacks for the MIME types 
  90         and extensions that might not be present in the system MIME database. 
  91         Please see the typetest sample for an example of using it. 
  93     void AddFallbacks(const wxFileTypeInfo
* fallbacks
); 
  96         Gather information about the files with given extension and return the 
  97         corresponding wxFileType object or @NULL if the extension is unknown. 
  99         The @a extension parameter may have, or not, the leading dot, if it has it, 
 100         it is stripped automatically. It must not however be empty. 
 102     wxFileType
* GetFileTypeFromExtension(const wxString
& extension
); 
 105         Gather information about the files with given MIME type and return the 
 106         corresponding wxFileType object or @NULL if the MIME type is unknown. 
 108     wxFileType
* GetFileTypeFromMimeType(const wxString
& mimeType
); 
 112         This function returns @true if either the given @a mimeType is exactly 
 113         the same as @a wildcard or if it has the same category and the subtype of 
 114         @a wildcard is '*'. Note that the '*' wildcard is not allowed in 
 117         The comparison don by this function is case insensitive so it is not 
 118         necessary to convert the strings to the same case before calling it. 
 120     static bool IsOfType(const wxString
& mimeType
, const wxString
& wildcard
); 
 125     The global wxMimeTypesManager instance. 
 127 wxMimeTypesManager
* wxTheMimeTypesManager
; 
 133     This class holds information about a given @e file type. 
 135     File type is the same as MIME type under Unix, but under Windows it corresponds 
 136     more to an extension than to MIME type (in fact, several extensions may 
 137     correspond to a file type). 
 139     This object may be created in several different ways: the program might know the 
 140     file extension and wish to find out the corresponding MIME type or, conversely, it 
 141     might want to find the right extension for the file to which it writes the 
 142     contents of given MIME type. Depending on how it was created some fields may be 
 143     unknown so the return value of all the accessors @b must be checked: @false 
 144     will be returned if the corresponding information couldn't be found. 
 146     The objects of this class are never created by the application code but are 
 147     returned by wxMimeTypesManager::GetFileTypeFromMimeType and 
 148     wxMimeTypesManager::GetFileTypeFromExtension methods. 
 149     But it is your responsibility to delete the returned pointer when you're done 
 152     A brief reminder about what the MIME types are (see the RFC 1341 for more 
 153     information): basically, it is just a pair category/type (for example, 
 154     "text/plain") where the category is a basic indication of what a file is. 
 155     Examples of categories are "application", "image", "text", "binary", and 
 156     type is a precise definition of the document format: "plain" in the example 
 157     above means just ASCII text without any formatting, while "text/html" is the 
 158     HTML document source. 
 160     A MIME type may have one or more associated extensions: "text/plain" will 
 161     typically correspond to the extension ".txt", but may as well be associated with 
 165     @section filetype_example MessageParameters class 
 167     One of the most common usages of MIME is to encode an e-mail message. 
 168     The MIME type of the encoded message is an example of a message parameter. 
 169     These parameters are found in the message headers ("Content-XXX"). 
 171     At the very least, they must specify the MIME type and the version of MIME 
 172     used, but almost always they provide additional information about the message 
 173     such as the original file name or the charset (for the text documents). 
 174     These parameters may be useful to the program used to open, edit, view or 
 175     print the message, so, for example, an e-mail client program will have to 
 176     pass them to this program. Because wxFileType itself can not know about 
 177     these parameters, it uses MessageParameters class to query them. 
 179     The default implementation only requires the caller to provide the file name 
 180     (always used by the program to be called - it must know which file to open) 
 181     and the MIME type and supposes that there are no other parameters. 
 183     If you wish to supply additional parameters, you must derive your own class 
 184     from MessageParameters and override GetParamValue() function, for example: 
 187     // provide the message parameters for the MIME type manager 
 188     class MailMessageParameters : public wxFileType::MessageParameters 
 191         MailMessageParameters(const wxString& filename, 
 192                                 const wxString& mimetype) 
 193             : wxFileType::MessageParameters(filename, mimetype) 
 197         virtual wxString GetParamValue(const wxString& name) const 
 199             // parameter names are not case-sensitive 
 200             if ( name.CmpNoCase("charset") == 0 ) 
 203                 return wxFileType::MessageParameters::GetParamValue(name); 
 208     Now you only need to create an object of this class and pass it to, for example, 
 209     GetOpenCommand like this: 
 213     if ( filetype->GetOpenCommand(&command, 
 214                                 MailMessageParameters("foo.txt", "text/plain")) ) 
 216         // the full command for opening the text documents is in 'command' 
 217         // (it might be "notepad foo.txt" under Windows or "cat foo.txt" under Unix) 
 221         // we don't know how to handle such files... 
 225     Windows: As only the file name is used by the program associated with the 
 226     given extension anyhow (but no other message parameters), there is no need 
 227     to ever derive from MessageParameters class for a Windows-only program. 
 233     @see wxMimeTypesManager 
 239         The default constructor is private because you should never create objects of 
 240         this type: they are only returned by wxMimeTypesManager methods. 
 248     wxFileType(const wxFileTypeInfo
& ftInfo
); 
 251         The destructor of this class is not virtual, so it should not be derived from. 
 256         This function is primarily intended for GetOpenCommand and GetPrintCommand 
 257         usage but may be also used by the application directly if, for example, you 
 258         want to use some non-default command to open the file. 
 260         The function replaces all occurrences of: 
 261         - %s with the full file name 
 262         - %t with the MIME type 
 263         - %{param} with the value of the parameter @e param 
 264         using the MessageParameters object you pass to it. 
 266         If there is no '%s' in the command string (and the string is not empty), it is 
 267         assumed that the command reads the data on stdin and so the effect is the same 
 268         as " %s" were appended to the string. 
 270         Unlike all other functions of this class, there is no error return for this 
 273     static wxString 
ExpandCommand(const wxString
& command
, 
 274                                   MessageParameters
& params
); 
 277         If the function returns @true, the string pointed to by @a desc is filled 
 278         with a brief description for this file type: for example, "text document" for 
 279         the "text/plain" MIME type. 
 281     bool GetDescription(wxString
* desc
) const; 
 284         If the function returns @true, the array @a extensions is filled 
 285         with all extensions associated with this file type: for example, it may 
 286         contain the following two elements for the MIME type "text/html" 
 287         (notice the absence of the leading dot): "html" and "htm". 
 289         @b Windows: This function is currently not implemented: there is no 
 290         (efficient) way to retrieve associated extensions from the given MIME type 
 291         on this platform, so it will only return @true if the wxFileType object was 
 292         created by wxMimeTypesManager::GetFileTypeFromExtension function in the 
 295     bool GetExtensions(wxArrayString
& extensions
); 
 298         If the function returns @true, the @c iconLoc is filled with the 
 299         location of the icon for this MIME type. 
 300         A wxIcon may be created from @a iconLoc later. 
 302         @b Windows: The function returns the icon shown by Explorer for the files of 
 305         @b Mac: This function is not implemented and always returns @false. 
 307         @b Unix: MIME manager gathers information about icons from GNOME 
 308         and KDE settings and thus GetIcon's success depends on availability 
 309         of these desktop environments. 
 311     bool GetIcon(wxIconLocation
* iconLoc
) const; 
 314         If the function returns @true, the string pointed to by @a mimeType is filled 
 315         with full MIME type specification for this file type: for example, "text/plain". 
 317     bool GetMimeType(wxString
* mimeType
) const; 
 320         Same as GetMimeType() but returns array of MIME types. 
 322         This array will contain only one item in most cases but sometimes, 
 323         notably under Unix with KDE, may contain more MIME types. 
 324         This happens when one file extension is mapped to different MIME types 
 325         by KDE, mailcap and mime.types. 
 327     bool GetMimeTypes(wxArrayString
& mimeTypes
) const; 
 331         With the first version of this method, if the @true is returned, the 
 332         string pointed to by @a command is filled with the command which must be 
 333         executed (see wxExecute()) in order to open the file of the given type. 
 335         In this case, the name of the file as well as any other parameters 
 336         is retrieved from MessageParameters() class. 
 338         In the second case, only the filename is specified and the command to be used 
 339         to open this kind of file is returned directly. An empty string is returned to 
 340         indicate that an error occurred (typically meaning that there is no standard way 
 341         to open this kind of files). 
 343     bool GetOpenCommand(wxString
* command
, MessageParameters
& params
); 
 344     wxString 
GetOpenCommand(const wxString
& filename
); 
 348         If the function returns @true, the string pointed to by @a command is filled 
 349         with the command which must be executed (see wxExecute()) in order to 
 350         print the file of the given type. 
 352         The name of the file is retrieved from the MessageParameters class. 
 354     bool GetPrintCommand(wxString
* command
, 
 355                          const MessageParameters
& params
) const;