
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2575 212acab6-be3b-0410-9dea-997c60f758d6
51 lines
1 KiB
C++
51 lines
1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: m_style.cpp
|
|
// Purpose: wxHtml module for parsing <style> tag
|
|
// Author: Vaclav Slavik
|
|
// RCS-ID: $Id: m_style.cpp,v 1.2.2.3 2002/11/09 00:07:35 VS Exp $
|
|
// Copyright: (c) 2002 Vaclav Slavik
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
#include "wx/defs.h"
|
|
#if wxUSE_HTML && wxUSE_STREAMS
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WXPRECOMP
|
|
#endif
|
|
|
|
#include "wx/html/forcelnk.h"
|
|
#include "wx/html/m_templ.h"
|
|
|
|
FORCE_LINK_ME(m_style)
|
|
|
|
|
|
TAG_HANDLER_BEGIN(STYLE, "STYLE")
|
|
|
|
TAG_HANDLER_PROC(WXUNUSED(tag))
|
|
{
|
|
// VS: Ignore styles for now. We must have this handler present,
|
|
// because CSS style text would be rendered verbatim otherwise
|
|
return TRUE;
|
|
}
|
|
|
|
TAG_HANDLER_END(STYLE)
|
|
|
|
|
|
TAGS_MODULE_BEGIN(StyleTag)
|
|
|
|
TAGS_MODULE_ADD(STYLE)
|
|
|
|
TAGS_MODULE_END(StyleTag)
|
|
|
|
#endif
|