Add wxFilterClassFactory::PopExtension().
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42477 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -346,6 +346,7 @@ public:
|
|||||||
virtual wxFilterOutputStream *NewStream(wxOutputStream *stream) const = 0;
|
virtual wxFilterOutputStream *NewStream(wxOutputStream *stream) const = 0;
|
||||||
|
|
||||||
wxString GetProtocol() const { return wxString(*GetProtocols()); }
|
wxString GetProtocol() const { return wxString(*GetProtocols()); }
|
||||||
|
wxString PopExtension(const wxString& location) const;
|
||||||
|
|
||||||
virtual const wxChar * const *GetProtocols(wxStreamProtocolType type
|
virtual const wxChar * const *GetProtocols(wxStreamProtocolType type
|
||||||
= wxSTREAM_PROTOCOL) const = 0;
|
= wxSTREAM_PROTOCOL) const = 0;
|
||||||
@@ -370,6 +371,8 @@ protected:
|
|||||||
wxFilterClassFactory& operator=(const wxFilterClassFactory&)
|
wxFilterClassFactory& operator=(const wxFilterClassFactory&)
|
||||||
{ return *this; }
|
{ return *this; }
|
||||||
|
|
||||||
|
wxString::size_type FindExtension(const wxChar *location) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static wxFilterClassFactory *sm_first;
|
static wxFilterClassFactory *sm_first;
|
||||||
wxFilterClassFactory *m_next;
|
wxFilterClassFactory *m_next;
|
||||||
|
@@ -1113,27 +1113,37 @@ IMPLEMENT_ABSTRACT_CLASS(wxFilterClassFactory, wxObject)
|
|||||||
|
|
||||||
wxFilterClassFactory *wxFilterClassFactory::sm_first = NULL;
|
wxFilterClassFactory *wxFilterClassFactory::sm_first = NULL;
|
||||||
|
|
||||||
|
wxString wxFilterClassFactory::PopExtension(const wxString& location) const
|
||||||
|
{
|
||||||
|
return location.substr(0, FindExtension(location));
|
||||||
|
}
|
||||||
|
|
||||||
|
wxString::size_type wxFilterClassFactory::FindExtension(const wxChar *location) const
|
||||||
|
{
|
||||||
|
size_t len = wxStrlen(location);
|
||||||
|
|
||||||
|
for (const wxChar *const *p = GetProtocols(wxSTREAM_FILEEXTENSION);
|
||||||
|
p && *p;
|
||||||
|
p++)
|
||||||
|
{
|
||||||
|
size_t l = wxStrlen(*p);
|
||||||
|
|
||||||
|
if (l <= len && wxStrcmp(*p, location + len - l) == 0)
|
||||||
|
return len - l;
|
||||||
|
}
|
||||||
|
|
||||||
|
return wxString::npos;
|
||||||
|
}
|
||||||
|
|
||||||
bool wxFilterClassFactory::CanHandle(const wxChar *protocol,
|
bool wxFilterClassFactory::CanHandle(const wxChar *protocol,
|
||||||
wxStreamProtocolType type) const
|
wxStreamProtocolType type) const
|
||||||
{
|
{
|
||||||
if (type == wxSTREAM_FILEEXTENSION)
|
if (type == wxSTREAM_FILEEXTENSION)
|
||||||
{
|
return FindExtension(protocol) != wxString::npos;
|
||||||
size_t len = wxStrlen(protocol);
|
|
||||||
|
|
||||||
for (const wxChar * const *p = GetProtocols(type); p && *p; p++)
|
|
||||||
{
|
|
||||||
size_t l = wxStrlen(*p);
|
|
||||||
|
|
||||||
if (l <= len && wxStrcmp(*p, protocol + len - l) == 0)
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
for (const wxChar *const *p = GetProtocols(type); p && *p; p++)
|
||||||
for (const wxChar * const *p = GetProtocols(type); p && *p; p++)
|
|
||||||
if (wxStrcmp(*p, protocol) == 0)
|
if (wxStrcmp(*p, protocol) == 0)
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user