2008-03-08 08:52:38 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: mimetype.h
|
2008-03-10 11:24:38 -04:00
|
|
|
// Purpose: interface of wxMimeTypesManager
|
2008-03-08 08:52:38 -05:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxMimeTypesManager
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
This class allows the application to retrieve the information about all known
|
|
|
|
MIME types from a system-specific location and the filename extensions to the
|
|
|
|
MIME types and vice versa. After initialization the functions
|
2008-07-01 04:30:28 -04:00
|
|
|
GetFileTypeFromMimeType() and GetFileTypeFromExtension()
|
2008-10-11 09:10:48 -04:00
|
|
|
may be called: they will return a wxFileType object which may be further
|
|
|
|
queried for file description, icon and other attributes.
|
|
|
|
|
|
|
|
Under Windows, the MIME type information is queried from registry.
|
|
|
|
Under Linux and Unix, it is queried from the XDG data directories.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-07-01 04:30:28 -04:00
|
|
|
Currently, wxMimeTypesManager is limited to reading MIME type information.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
The application should not construct its own manager: it should use the
|
2008-07-01 04:30:28 -04:00
|
|
|
object pointer ::wxTheMimeTypesManger.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
|
|
|
|
@section mimetypemanager_helpers Helper functions
|
|
|
|
|
|
|
|
All of these functions are static (i.e. don't need a wxMimeTypesManager object
|
|
|
|
to call them) and provide some useful operations for string representations of
|
|
|
|
MIME types. Their usage is recommended instead of directly working with MIME
|
|
|
|
types using wxString functions.
|
|
|
|
|
|
|
|
- wxMimeTypesManager::IsOfType()
|
|
|
|
|
|
|
|
|
|
|
|
@section mimetypemanager_ctor Constructor and destructor
|
|
|
|
|
|
|
|
NB: You won't normally need to use more than one wxMimeTypesManager object
|
|
|
|
in a program.
|
|
|
|
|
|
|
|
- wxMimeTypesManager::wxMimeTypesManager()
|
|
|
|
- wxMimeTypesManager::~wxMimeTypesManager()
|
|
|
|
|
|
|
|
|
|
|
|
@section mimetypemanager_query Query database
|
|
|
|
|
|
|
|
These functions are the heart of this class: they allow to find a file type
|
|
|
|
object from either file extension or MIME type.
|
|
|
|
If the function is successful, it returns a pointer to the wxFileType object
|
|
|
|
which must be deleted by the caller, otherwise NULL will be returned.
|
|
|
|
|
|
|
|
- wxMimeTypesManager::GetFileTypeFromMimeType()
|
|
|
|
- wxMimeTypesManager::GetFileTypeFromExtension()
|
|
|
|
|
|
|
|
|
|
|
|
@section mimetypemanager_init Initialization functions
|
|
|
|
|
|
|
|
Unix: These functions may be used to load additional files (except for the
|
|
|
|
default ones which are loaded automatically) containing MIME information in
|
|
|
|
either mailcap(5) or mime.types(5) format.
|
|
|
|
|
|
|
|
- wxMimeTypesManager::ReadMailcap()
|
|
|
|
- wxMimeTypesManager::ReadMimeTypes()
|
|
|
|
- wxMimeTypesManager::AddFallbacks()
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@library{wxbase}
|
|
|
|
@category{misc}
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-10 11:24:38 -04:00
|
|
|
@see wxFileType
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
2008-03-08 09:43:31 -05:00
|
|
|
class wxMimeTypesManager
|
2008-03-08 08:52:38 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2008-07-01 04:30:28 -04:00
|
|
|
Constructor puts the object in the "working" state.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
wxMimeTypesManager();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor is not virtual, so this class should not be derived from.
|
|
|
|
*/
|
|
|
|
~wxMimeTypesManager();
|
|
|
|
|
|
|
|
/**
|
|
|
|
This function may be used to provide hard-wired fallbacks for the MIME types
|
|
|
|
and extensions that might not be present in the system MIME database.
|
|
|
|
Please see the typetest sample for an example of using it.
|
|
|
|
*/
|
2008-03-09 08:33:59 -04:00
|
|
|
void AddFallbacks(const wxFileTypeInfo* fallbacks);
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
Gather information about the files with given extension and return the
|
2008-07-01 04:30:28 -04:00
|
|
|
corresponding wxFileType object or @NULL if the extension is unknown.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-09 08:33:59 -04:00
|
|
|
The @a extension parameter may have, or not, the leading dot, if it has it,
|
2008-03-08 08:52:38 -05:00
|
|
|
it is stripped automatically. It must not however be empty.
|
|
|
|
*/
|
|
|
|
wxFileType* GetFileTypeFromExtension(const wxString& extension);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Gather information about the files with given MIME type and return the
|
2008-07-01 04:30:28 -04:00
|
|
|
corresponding wxFileType object or @NULL if the MIME type is unknown.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
wxFileType* GetFileTypeFromMimeType(const wxString& mimeType);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-10-11 09:10:48 -04:00
|
|
|
This function returns @true if either the given @a mimeType is exactly
|
|
|
|
the same as @a wildcard or if it has the same category and the subtype of
|
2008-03-09 08:33:59 -04:00
|
|
|
@a wildcard is '*'. Note that the '*' wildcard is not allowed in
|
|
|
|
@a mimeType itself.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
The comparison don by this function is case insensitive so it is not
|
|
|
|
necessary to convert the strings to the same case before calling it.
|
|
|
|
*/
|
2008-07-01 04:30:28 -04:00
|
|
|
static bool IsOfType(const wxString& mimeType, const wxString& wildcard);
|
2008-03-08 08:52:38 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-07-01 04:30:28 -04:00
|
|
|
/**
|
|
|
|
The global wxMimeTypesManager instance.
|
|
|
|
*/
|
|
|
|
wxMimeTypesManager* wxTheMimeTypesManager;
|
|
|
|
|
2008-03-10 11:24:38 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
/**
|
|
|
|
@class wxFileType
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
This class holds information about a given @e file type.
|
|
|
|
|
|
|
|
File type is the same as MIME type under Unix, but under Windows it corresponds
|
|
|
|
more to an extension than to MIME type (in fact, several extensions may
|
|
|
|
correspond to a file type).
|
|
|
|
|
|
|
|
This object may be created in several different ways: the program might know the
|
|
|
|
file extension and wish to find out the corresponding MIME type or, conversely, it
|
2008-03-08 08:52:38 -05:00
|
|
|
might want to find the right extension for the file to which it writes the
|
|
|
|
contents of given MIME type. Depending on how it was created some fields may be
|
|
|
|
unknown so the return value of all the accessors @b must be checked: @false
|
|
|
|
will be returned if the corresponding information couldn't be found.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
The objects of this class are never created by the application code but are
|
2008-03-08 09:43:31 -05:00
|
|
|
returned by wxMimeTypesManager::GetFileTypeFromMimeType and
|
2008-03-08 08:52:38 -05:00
|
|
|
wxMimeTypesManager::GetFileTypeFromExtension methods.
|
|
|
|
But it is your responsibility to delete the returned pointer when you're done
|
|
|
|
with it!
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
A brief reminder about what the MIME types are (see the RFC 1341 for more
|
|
|
|
information): basically, it is just a pair category/type (for example,
|
|
|
|
"text/plain") where the category is a basic indication of what a file is.
|
|
|
|
Examples of categories are "application", "image", "text", "binary", and
|
|
|
|
type is a precise definition of the document format: "plain" in the example
|
|
|
|
above means just ASCII text without any formatting, while "text/html" is the
|
|
|
|
HTML document source.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
A MIME type may have one or more associated extensions: "text/plain" will
|
|
|
|
typically correspond to the extension ".txt", but may as well be associated with
|
|
|
|
".ini" or ".conf".
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
|
|
|
|
@section filetype_example MessageParameters class
|
|
|
|
|
|
|
|
One of the most common usages of MIME is to encode an e-mail message.
|
|
|
|
The MIME type of the encoded message is an example of a message parameter.
|
|
|
|
These parameters are found in the message headers ("Content-XXX").
|
|
|
|
|
|
|
|
At the very least, they must specify the MIME type and the version of MIME
|
|
|
|
used, but almost always they provide additional information about the message
|
|
|
|
such as the original file name or the charset (for the text documents).
|
|
|
|
These parameters may be useful to the program used to open, edit, view or
|
|
|
|
print the message, so, for example, an e-mail client program will have to
|
|
|
|
pass them to this program. Because wxFileType itself can not know about
|
|
|
|
these parameters, it uses MessageParameters class to query them.
|
|
|
|
|
|
|
|
The default implementation only requires the caller to provide the file name
|
|
|
|
(always used by the program to be called - it must know which file to open)
|
|
|
|
and the MIME type and supposes that there are no other parameters.
|
|
|
|
|
|
|
|
If you wish to supply additional parameters, you must derive your own class
|
|
|
|
from MessageParameters and override GetParamValue() function, for example:
|
|
|
|
|
|
|
|
@code
|
|
|
|
// provide the message parameters for the MIME type manager
|
|
|
|
class MailMessageParameters : public wxFileType::MessageParameters
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MailMessageParameters(const wxString& filename,
|
|
|
|
const wxString& mimetype)
|
|
|
|
: wxFileType::MessageParameters(filename, mimetype)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxString GetParamValue(const wxString& name) const
|
|
|
|
{
|
|
|
|
// parameter names are not case-sensitive
|
|
|
|
if ( name.CmpNoCase("charset") == 0 )
|
|
|
|
return "US-ASCII";
|
|
|
|
else
|
|
|
|
return wxFileType::MessageParameters::GetParamValue(name);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
Now you only need to create an object of this class and pass it to, for example,
|
|
|
|
GetOpenCommand like this:
|
|
|
|
|
|
|
|
@code
|
|
|
|
wxString command;
|
|
|
|
if ( filetype->GetOpenCommand(&command,
|
|
|
|
MailMessageParameters("foo.txt", "text/plain")) )
|
|
|
|
{
|
|
|
|
// the full command for opening the text documents is in 'command'
|
|
|
|
// (it might be "notepad foo.txt" under Windows or "cat foo.txt" under Unix)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// we don't know how to handle such files...
|
|
|
|
}
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
Windows: As only the file name is used by the program associated with the
|
|
|
|
given extension anyhow (but no other message parameters), there is no need
|
|
|
|
to ever derive from MessageParameters class for a Windows-only program.
|
|
|
|
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@library{wxbase}
|
2008-10-11 09:10:48 -04:00
|
|
|
@category{misc}
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-10 11:24:38 -04:00
|
|
|
@see wxMimeTypesManager
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
2008-03-08 09:43:31 -05:00
|
|
|
class wxFileType
|
2008-03-08 08:52:38 -05:00
|
|
|
{
|
2008-10-13 09:46:42 -04:00
|
|
|
private:
|
2008-03-08 08:52:38 -05:00
|
|
|
/**
|
|
|
|
The default constructor is private because you should never create objects of
|
|
|
|
this type: they are only returned by wxMimeTypesManager methods.
|
|
|
|
*/
|
|
|
|
wxFileType();
|
|
|
|
|
2008-10-13 09:46:42 -04:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Copy ctor.
|
|
|
|
*/
|
|
|
|
wxFileType(const wxFileTypeInfo& ftInfo);
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
/**
|
|
|
|
The destructor of this class is not virtual, so it should not be derived from.
|
|
|
|
*/
|
|
|
|
~wxFileType();
|
|
|
|
|
|
|
|
/**
|
|
|
|
This function is primarily intended for GetOpenCommand and GetPrintCommand
|
2008-10-11 09:10:48 -04:00
|
|
|
usage but may be also used by the application directly if, for example, you
|
|
|
|
want to use some non-default command to open the file.
|
2008-03-20 09:45:17 -04:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
The function replaces all occurrences of:
|
|
|
|
- %s with the full file name
|
|
|
|
- %t with the MIME type
|
|
|
|
- %{param} with the value of the parameter @e param
|
2008-03-08 08:52:38 -05:00
|
|
|
using the MessageParameters object you pass to it.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
If there is no '%s' in the command string (and the string is not empty), it is
|
|
|
|
assumed that the command reads the data on stdin and so the effect is the same
|
|
|
|
as " %s" were appended to the string.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
Unlike all other functions of this class, there is no error return for this
|
|
|
|
function.
|
|
|
|
*/
|
|
|
|
static wxString ExpandCommand(const wxString& command,
|
|
|
|
MessageParameters& params);
|
|
|
|
|
|
|
|
/**
|
2008-03-09 08:33:59 -04:00
|
|
|
If the function returns @true, the string pointed to by @a desc is filled
|
2008-03-08 08:52:38 -05:00
|
|
|
with a brief description for this file type: for example, "text document" for
|
|
|
|
the "text/plain" MIME type.
|
|
|
|
*/
|
2008-09-27 07:21:10 -04:00
|
|
|
bool GetDescription(wxString* desc) const;
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
2008-03-09 08:33:59 -04:00
|
|
|
If the function returns @true, the array @a extensions is filled
|
2008-03-08 08:52:38 -05:00
|
|
|
with all extensions associated with this file type: for example, it may
|
2008-10-11 09:10:48 -04:00
|
|
|
contain the following two elements for the MIME type "text/html"
|
|
|
|
(notice the absence of the leading dot): "html" and "htm".
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@b Windows: This function is currently not implemented: there is no
|
2008-10-11 09:10:48 -04:00
|
|
|
(efficient) way to retrieve associated extensions from the given MIME type
|
|
|
|
on this platform, so it will only return @true if the wxFileType object was
|
|
|
|
created by wxMimeTypesManager::GetFileTypeFromExtension function in the
|
|
|
|
first place.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
bool GetExtensions(wxArrayString& extensions);
|
|
|
|
|
|
|
|
/**
|
|
|
|
If the function returns @true, the @c iconLoc is filled with the
|
2008-10-11 09:10:48 -04:00
|
|
|
location of the icon for this MIME type.
|
|
|
|
A wxIcon may be created from @a iconLoc later.
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@b Windows: The function returns the icon shown by Explorer for the files of
|
|
|
|
the specified type.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@b Mac: This function is not implemented and always returns @false.
|
2008-10-11 09:10:48 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@b Unix: MIME manager gathers information about icons from GNOME
|
|
|
|
and KDE settings and thus GetIcon's success depends on availability
|
|
|
|
of these desktop environments.
|
|
|
|
*/
|
2008-09-27 07:21:10 -04:00
|
|
|
bool GetIcon(wxIconLocation* iconLoc) const;
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
2008-03-09 08:33:59 -04:00
|
|
|
If the function returns @true, the string pointed to by @a mimeType is filled
|
2008-03-08 08:52:38 -05:00
|
|
|
with full MIME type specification for this file type: for example, "text/plain".
|
|
|
|
*/
|
2008-09-27 07:21:10 -04:00
|
|
|
bool GetMimeType(wxString* mimeType) const;
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
2008-10-11 09:10:48 -04:00
|
|
|
Same as GetMimeType() but returns array of MIME types.
|
|
|
|
|
|
|
|
This array will contain only one item in most cases but sometimes,
|
|
|
|
notably under Unix with KDE, may contain more MIME types.
|
|
|
|
This happens when one file extension is mapped to different MIME types
|
|
|
|
by KDE, mailcap and mime.types.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
2008-10-28 11:36:26 -04:00
|
|
|
bool GetMimeTypes(wxArrayString& mimeTypes) const;
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
With the first version of this method, if the @true is returned, the
|
2008-03-09 08:33:59 -04:00
|
|
|
string pointed to by @a command is filled with the command which must be
|
2008-10-11 09:10:48 -04:00
|
|
|
executed (see wxExecute()) in order to open the file of the given type.
|
|
|
|
|
|
|
|
In this case, the name of the file as well as any other parameters
|
|
|
|
is retrieved from MessageParameters() class.
|
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
In the second case, only the filename is specified and the command to be used
|
|
|
|
to open this kind of file is returned directly. An empty string is returned to
|
|
|
|
indicate that an error occurred (typically meaning that there is no standard way
|
|
|
|
to open this kind of files).
|
|
|
|
*/
|
2008-10-11 09:10:48 -04:00
|
|
|
bool GetOpenCommand(wxString* command, MessageParameters& params);
|
2008-03-08 09:43:31 -05:00
|
|
|
wxString GetOpenCommand(const wxString& filename);
|
2008-03-08 08:52:38 -05:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
2008-03-09 08:33:59 -04:00
|
|
|
If the function returns @true, the string pointed to by @a command is filled
|
2008-10-11 09:10:48 -04:00
|
|
|
with the command which must be executed (see wxExecute()) in order to
|
|
|
|
print the file of the given type.
|
2008-03-08 08:52:38 -05:00
|
|
|
|
2008-10-11 09:10:48 -04:00
|
|
|
The name of the file is retrieved from the MessageParameters class.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
2008-10-28 11:36:26 -04:00
|
|
|
bool GetPrintCommand(wxString* command,
|
|
|
|
const MessageParameters& params) const;
|
2008-03-08 08:52:38 -05:00
|
|
|
};
|
2008-03-10 11:24:38 -04:00
|
|
|
|