2001-05-02 23:08:47 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/html/htmlprep.h
|
2001-05-02 23:08:47 +00:00
|
|
|
// Purpose: HTML processor
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 2001 Vaclav Slavik
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-05-02 23:08:47 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_HTMLPREP_H_
|
|
|
|
#define _WX_HTMLPREP_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_HTML
|
|
|
|
|
|
|
|
#include "wx/string.h"
|
|
|
|
|
|
|
|
// Priority of preprocessor in the chain. The higher, the earlier it is used
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
wxHTML_PRIORITY_DONTCARE = 128, // if the order doesn't matter, use this
|
|
|
|
// priority
|
|
|
|
wxHTML_PRIORITY_SYSTEM = 256 // >=256 is only for wxHTML's internals
|
|
|
|
};
|
|
|
|
|
2004-09-27 19:06:39 +00:00
|
|
|
// Classes derived from this class serve as simple text processors for
|
2001-05-02 23:08:47 +00:00
|
|
|
// wxHtmlWindow. wxHtmlWindow runs HTML markup through all registered
|
|
|
|
// processors before displaying it, thus allowing for on-the-fly
|
|
|
|
// modifications of the markup.
|
|
|
|
|
2003-07-04 13:04:05 +00:00
|
|
|
class WXDLLIMPEXP_HTML wxHtmlProcessor : public wxObject
|
2001-05-02 23:08:47 +00:00
|
|
|
{
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_ABSTRACT_CLASS(wxHtmlProcessor);
|
2001-05-02 23:08:47 +00:00
|
|
|
|
|
|
|
public:
|
2004-09-27 19:06:39 +00:00
|
|
|
wxHtmlProcessor() : wxObject(), m_enabled(true) {}
|
2001-05-02 23:08:47 +00:00
|
|
|
virtual ~wxHtmlProcessor() {}
|
|
|
|
|
|
|
|
// Process input text and return processed result
|
|
|
|
virtual wxString Process(const wxString& text) const = 0;
|
|
|
|
|
|
|
|
// Return priority value of this processor. The higher, the sooner
|
|
|
|
// is the processor applied to the text.
|
|
|
|
virtual int GetPriority() const { return wxHTML_PRIORITY_DONTCARE; }
|
2004-09-27 19:06:39 +00:00
|
|
|
|
|
|
|
// Enable/disable the processor. wxHtmlWindow won't use a disabled
|
2001-05-04 23:54:01 +00:00
|
|
|
// processor even if it is in its processors queue.
|
2004-09-27 19:06:39 +00:00
|
|
|
virtual void Enable(bool enable = true) { m_enabled = enable; }
|
2001-05-04 23:54:01 +00:00
|
|
|
bool IsEnabled() const { return m_enabled; }
|
2004-09-27 19:06:39 +00:00
|
|
|
|
2001-05-04 23:54:01 +00:00
|
|
|
protected:
|
|
|
|
bool m_enabled;
|
2001-05-02 23:08:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_HTML
|
|
|
|
|
|
|
|
#endif // _WX_HTMLPROC_H_
|