⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 markup.cpp

📁 wxGTK 是 wxWidgets 的 linux GTK+ (>2.2.3)版本。wxWidgets 是一个跨平台的 GUI 框架
💻 CPP
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        No names yet.// Purpose:     Contrib. demo// Author:      Aleksandras Gluchovas// Modified by:// Created:     22/09/98// RCS-ID:      $Id: markup.cpp,v 1.2 2003/10/22 20:54:50 MBN Exp $// Copyright:   (c) Aleskandars Gluchovas// Licence:   	wxWindows licence/////////////////////////////////////////////////////////////////////////////// For compilers that support precompilation, includes "wx/wx.h".#include "wx/wxprec.h"#ifdef __BORLANDC__#pragma hdrstop#endif#ifndef WX_PRECOMP#include "wx/wx.h"#endif#include "markup.h"static TagStructT htmlTags[] ={	{ "<b>","</b>" }, // 0	{ "<i>","</i>" }, // 1	{ "<pre>","</pre>" }, // 2	{ "<font color=\"#000000\">","</font>" }, // 3	{ "<font color=\"#8F0000\">","</font>" }, // 4	{ "<font color=\"#008F00\">","</font>" }, // 5	{ "<font color=\"#0000CF\">","</font>" }, // 6	{ "<p>","</p>" }, // 7	{ "<br>","" }, // 8	{ "<h1>","</h1>" }, // 9	{ "<h2>","</h2>" }, // 10	{ "<h3>","</h3>" }, // 11	{ "<ul>","</ul>" }, // 12	{ "<li>","</li>" }, // 13};MarkupTagsT get_HTML_markup_tags(){	return htmlTags;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -