b13d92d1c8
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1321 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
146 lines
5.3 KiB
C++
146 lines
5.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/mimetype.h
|
|
// Purpose: classes and functions to manage MIME types
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 23.09.98
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows license (part of wxExtra library)
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _MIMETYPE_H
|
|
#define _MIMETYPE_H
|
|
|
|
// fwd decls
|
|
class wxIcon;
|
|
class wxFileTypeImpl;
|
|
class wxMimeTypesManagerImpl;
|
|
|
|
// the things we really need
|
|
#include "wx/string.h"
|
|
|
|
// This class holds information about a given "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 many different ways and depending
|
|
// on how it was created some fields may be unknown so the return value of all
|
|
// the accessors *must* be checked!
|
|
class wxFileType
|
|
{
|
|
friend wxMimeTypesManagerImpl; // it has access to m_impl
|
|
|
|
public:
|
|
// An object of this class must be passed to Get{Open|Print}Command. The
|
|
// default implementation is trivial and doesn't know anything at all about
|
|
// parameters, only filename and MIME type are used (so it's probably ok for
|
|
// Windows where %{param} is not used anyhow)
|
|
class MessageParameters
|
|
{
|
|
public:
|
|
// ctors
|
|
MessageParameters() { }
|
|
MessageParameters(const wxString& filename, const wxString& mimetype)
|
|
: m_filename(filename), m_mimetype(mimetype) { }
|
|
|
|
// accessors (called by GetOpenCommand)
|
|
// filename
|
|
const wxString& GetFileName() const { return m_filename; }
|
|
// mime type
|
|
const wxString& GetMimeType() const { return m_mimetype; }
|
|
|
|
// override this function in derived class
|
|
virtual wxString GetParamValue(const wxString& paramName) const
|
|
{ return ""; }
|
|
|
|
// virtual dtor as in any base class
|
|
virtual ~MessageParameters() { }
|
|
|
|
protected:
|
|
wxString m_filename, m_mimetype;
|
|
};
|
|
|
|
// accessors: all of them return true if the corresponding information
|
|
// could be retrieved/found, false otherwise (and in this case all [out]
|
|
// parameters are unchanged)
|
|
// return the MIME type for this file type
|
|
bool GetMimeType(wxString *mimeType) const;
|
|
// fill passed in array with all extensions associated with this file
|
|
// type
|
|
bool GetExtensions(wxArrayString& extensions);
|
|
// get the icon corresponding to this file type
|
|
bool GetIcon(wxIcon *icon) const;
|
|
// get a brief file type description ("*.txt" => "text document")
|
|
bool GetDescription(wxString *desc) const;
|
|
|
|
// get the command to be used to open/print the given file.
|
|
// get the command to execute the file of given type
|
|
bool GetOpenCommand(wxString *openCmd,
|
|
const MessageParameters& params) const;
|
|
// get the command to print the file of given type
|
|
bool GetPrintCommand(wxString *printCmd,
|
|
const MessageParameters& params) const;
|
|
|
|
// operations
|
|
// expand a string in the format of GetOpenCommand (which may contain
|
|
// '%s' and '%t' format specificators for the file name and mime type
|
|
// and %{param} constructions).
|
|
static wxString ExpandCommand(const wxString& command,
|
|
const MessageParameters& params);
|
|
|
|
// dtor (not virtual, shouldn't be derived from)
|
|
~wxFileType();
|
|
|
|
private:
|
|
// default ctor is private because the user code never creates us
|
|
wxFileType();
|
|
|
|
// no copy ctor/assignment operator
|
|
wxFileType(const wxFileType&);
|
|
wxFileType& operator=(const wxFileType&);
|
|
|
|
wxFileTypeImpl *m_impl;
|
|
};
|
|
|
|
// This class accesses the information about all known MIME types and allows
|
|
// the application to retrieve information (including how to handle data of
|
|
// given type) about them.
|
|
//
|
|
// NB: currently it doesn't support modifying MIME database (read-only access).
|
|
class wxMimeTypesManager
|
|
{
|
|
public:
|
|
// ctor
|
|
wxMimeTypesManager();
|
|
|
|
// Database lookup: all functions return a pointer to wxFileType object
|
|
// whose methods may be used to query it for the information you're
|
|
// interested in. If the return value is !NULL, caller is responsible for
|
|
// deleting it.
|
|
// get file type from file extension
|
|
wxFileType *GetFileTypeFromExtension(const wxString& ext);
|
|
// get file type from MIME type (in format <category>/<format>)
|
|
wxFileType *GetFileTypeFromMimeType(const wxString& mimeType);
|
|
|
|
// other operations
|
|
// read in additional file (the standard ones are read automatically)
|
|
// in mailcap format (see mimetype.cpp for description)
|
|
void ReadMailcap(const wxString& filename);
|
|
// read in additional file in mime.types format
|
|
void ReadMimeTypes(const wxString& filename);
|
|
|
|
// dtor (not virtual, shouldn't be derived from)
|
|
~wxMimeTypesManager();
|
|
|
|
private:
|
|
// no copy ctor/assignment operator
|
|
wxMimeTypesManager(const wxMimeTypesManager&);
|
|
wxMimeTypesManager& operator=(const wxMimeTypesManager&);
|
|
|
|
wxMimeTypesManagerImpl *m_impl;
|
|
};
|
|
|
|
#endif //_MIMETYPE_H
|
|
|
|
/* vi: set cin tw=80 ts=4 sw=4: */
|