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

📄 htmldefs.h

📁 浙江大学的悟空嵌入式系统模拟器
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////
// Name:        htmldefs.h
// Purpose:     constants for wxhtml library
// Author:      Vaclav Slavik
// RCS-ID:      $Id: htmldefs.h,v 1.1 2005/03/16 06:49:43 kehc Exp $
// Copyright:   (c) 1999 Vaclav Slavik
// Licence:     wxWindows Licence
/////////////////////////////////////////////////////////////////////////////


#ifndef _WX_HTMLDEFS_H_
#define _WX_HTMLDEFS_H_

#include "wx/defs.h"

#if wxUSE_HTML

//--------------------------------------------------------------------------------
// ALIGNMENTS
//                  Describes alignment of text etc. in containers
//--------------------------------------------------------------------------------

#define wxHTML_ALIGN_LEFT            0x0000
#define wxHTML_ALIGN_RIGHT           0x0002
#define wxHTML_ALIGN_JUSTIFY         0x0010

#define wxHTML_ALIGN_TOP             0x0004
#define wxHTML_ALIGN_BOTTOM          0x0008

#define wxHTML_ALIGN_CENTER          0x0001



//--------------------------------------------------------------------------------
// COLOR MODES
//                  Used by wxHtmlColourCell to determine clr of what is changing
//--------------------------------------------------------------------------------

#define wxHTML_CLR_FOREGROUND        0x0001
#define wxHTML_CLR_BACKGROUND        0x0002



//--------------------------------------------------------------------------------
// UNITS
//                  Used to specify units
//--------------------------------------------------------------------------------

#define wxHTML_UNITS_PIXELS          0x0001
#define wxHTML_UNITS_PERCENT         0x0002



//--------------------------------------------------------------------------------
// INDENTS
//                  Used to specify indetation relatives
//--------------------------------------------------------------------------------

#define wxHTML_INDENT_LEFT           0x0010
#define wxHTML_INDENT_RIGHT          0x0020
#define wxHTML_INDENT_TOP            0x0040
#define wxHTML_INDENT_BOTTOM         0x0080

#define wxHTML_INDENT_HORIZONTAL     wxHTML_INDENT_LEFT | wxHTML_INDENT_RIGHT
#define wxHTML_INDENT_VERTICAL       wxHTML_INDENT_TOP | wxHTML_INDENT_BOTTOM
#define wxHTML_INDENT_ALL            wxHTML_INDENT_VERTICAL | wxHTML_INDENT_HORIZONTAL




//--------------------------------------------------------------------------------
// FIND CONDITIONS
//                  Identifiers of wxHtmlCell's Find() conditions
//--------------------------------------------------------------------------------

#define wxHTML_COND_ISANCHOR              1
        // Finds the anchor of 'param' name (pointer to wxString).
	
#define wxHTML_COND_ISIMAGEMAP            2
        // Finds imagemap of 'param' name (pointer to wxString).
	// (used exclusively by m_image.cpp)
	
#define wxHTML_COND_USER              10000
        // User-defined conditions should start from this number


//--------------------------------------------------------------------------------
// INTERNALS
//                  wxHTML internal constants
//--------------------------------------------------------------------------------

#define wxHTML_SCROLL_STEP               16
    /* size of one scroll step of wxHtmlWindow in pixels */
#define wxHTML_BUFLEN                  1024
    /* size of temporary buffer used during parsing */
#define wxHTML_REALLOC_STEP              32
    /* steps of array reallocation */
#define wxHTML_PRINT_MAX_PAGES          999
    /* maximum number of pages printable via html printing */


    /* default font sizes */
#ifdef __WXMSW__
   #define wxHTML_FONT_SIZE_1              7
   #define wxHTML_FONT_SIZE_2              8
   #define wxHTML_FONT_SIZE_3             10
   #define wxHTML_FONT_SIZE_4             12
   #define wxHTML_FONT_SIZE_5             16
   #define wxHTML_FONT_SIZE_6             22
   #define wxHTML_FONT_SIZE_7             30
#elif defined(__WXMAC__)
   #define wxHTML_FONT_SIZE_1              9
   #define wxHTML_FONT_SIZE_2             12
   #define wxHTML_FONT_SIZE_3             14
   #define wxHTML_FONT_SIZE_4             18
   #define wxHTML_FONT_SIZE_5             24
   #define wxHTML_FONT_SIZE_6             30
   #define wxHTML_FONT_SIZE_7             36
#else
   #define wxHTML_FONT_SIZE_1             10
   #define wxHTML_FONT_SIZE_2             12
   #define wxHTML_FONT_SIZE_3             14
   #define wxHTML_FONT_SIZE_4             16
   #define wxHTML_FONT_SIZE_5             19
   #define wxHTML_FONT_SIZE_6             24
   #define wxHTML_FONT_SIZE_7             32
#endif


#if WXWIN_COMPATIBILITY_2

#define HTML_ALIGN_LEFT            wxHTML_ALIGN_LEFT
#define HTML_ALIGN_RIGHT           wxHTML_ALIGN_RIGHT
#define HTML_ALIGN_TOP             wxHTML_ALIGN_TOP
#define HTML_ALIGN_BOTTOM          wxHTML_ALIGN_BOTTOM
#define HTML_ALIGN_CENTER          wxHTML_ALIGN_CENTER
#define HTML_CLR_FOREGROUND        wxHTML_CLR_FOREGROUND
#define HTML_CLR_BACKGROUND        wxHTML_CLR_BACKGROUND
#define HTML_UNITS_PIXELS          wxHTML_UNITS_PIXELS
#define HTML_UNITS_PERCENT         wxHTML_UNITS_PERCENT
#define HTML_INDENT_LEFT           wxHTML_INDENT_LEFT
#define HTML_INDENT_RIGHT          wxHTML_INDENT_RIGHT
#define HTML_INDENT_TOP            wxHTML_INDENT_TOP
#define HTML_INDENT_BOTTOM         wxHTML_INDENT_BOTTOM
#define HTML_INDENT_HORIZONTAL     wxHTML_INDENT_HORIZONTAL
#define HTML_INDENT_VERTICAL       wxHTML_INDENT_VERTICAL
#define HTML_INDENT_ALL            wxHTML_INDENT_ALL
#define HTML_COND_ISANCHOR         wxHTML_COND_ISANCHOR
#define HTML_COND_ISIMAGEMAP       wxHTML_COND_ISIMAGEMAP
#define HTML_COND_USER             wxHTML_COND_USER

#endif



#endif
#endif

⌨️ 快捷键说明

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