X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/de4983f3236c2043479abb21857aca958a7b61f0..14919c70208688d2ab03fbc1f2a19d2ae0fb7f9c:/include/wx/mimetype.h diff --git a/include/wx/mimetype.h b/include/wx/mimetype.h index b91059aaa0..0bffcb0fee 100644 --- a/include/wx/mimetype.h +++ b/include/wx/mimetype.h @@ -53,12 +53,12 @@ class WXDLLIMPEXP_BASE wxMimeType : public wxString public: // all string ctors here - wxString GetType() const { return BeforeFirst(_T('/')); } - wxString GetSubType() const { return AfterFirst(_T('/')); } + wxString GetType() const { return BeforeFirst(wxT('/')); } + wxString GetSubType() const { return AfterFirst(wxT('/')); } void SetSubType(const wxString& subtype) { - *this = GetType() + _T('/') + subtype; + *this = GetType() + wxT('/') + subtype; } bool Matches(const wxMimeType& wildcard) @@ -137,7 +137,7 @@ public: // NB: This is a helper to get implicit conversion of variadic ctor's // fixed arguments into something that can be passed to VarArgInit(). // Do not use, it's used by the ctor only. - struct WXDLLIMPEXP_BASE CtorString + struct CtorString { CtorString(const char *str) : m_str(str) {} CtorString(const wchar_t *str) : m_str(str) {} @@ -152,8 +152,16 @@ public: }; // ctors - // a normal item + // Ctor specifying just the MIME type (which is mandatory), the other + // fields can be set later if needed. + wxFileTypeInfo(const wxString& mimeType) + : m_mimeType(mimeType) + { + } + + // Ctor allowing to specify the values of all fields at once: + // // wxFileTypeInfo(const wxString& mimeType, // const wxString& openCmd, // const wxString& printCmd, @@ -224,6 +232,16 @@ public: bool IsValid() const { return !m_mimeType.empty(); } // setters + // set the open/print commands + void SetOpenCommand(const wxString& command) { m_openCmd = command; } + void SetPrintCommand(const wxString& command) { m_printCmd = command; } + + // set the description + void SetDescription(const wxString& desc) { m_desc = desc; } + + // add another extension corresponding to this file type + void AddExtension(const wxString& ext) { m_exts.push_back(ext); } + // set the icon info void SetIcon(const wxString& iconFile, int iconIndex = 0) { @@ -371,7 +389,7 @@ public: // operations // expand a string in the format of GetOpenCommand (which may contain - // '%s' and '%t' format specificators for the file name and mime type + // '%s' and '%t' format specifiers for the file name and mime type // and %{param} constructions). static wxString ExpandCommand(const wxString& command, const MessageParameters& params); @@ -410,7 +428,7 @@ public: static void Set( wxMimeTypesManagerFactory *factory ); static wxMimeTypesManagerFactory *Get(); - + private: static wxMimeTypesManagerFactory *m_factory; };