一 需求分析
在所需高亮的关键字或字符串前后加上class标签,在css定义颜色。
二 程序设计
2.1 设计思路
把.html文件和.css文件中的内容存在两个字符数组中,在.cpp用文件操作写入。
2.2 文件组织架构
-
Syntax highlighting.exe所在目录为根目录
-
源代码命名:Syntax highlighting.cpp
-
文件操作函数头文件:openfile.h
-
包涵变量的头文件:global var.h
2.3 高亮颜色设计
1.关键字及其他
颜色码:#66d9ef
以此种颜色表示的字符串(49个):
“asm”,”auto”,”char”,”bool”,”catch”,”class”,”delete”,”const”,”cdecl”,”double”,”enum”,”extern”,”float”,”far”,”huge”,”near”,”interrupt”,”int”,”long”,”pascal”,”register”,”short”,”signed”,”static”,”signed”,”struct”,”typedef”,”union”,”unsigned”,”void”,”volatile”,”sprintf”,”puts”,”gets”,”scanf”,”printf”,”fputs”,”fputc”,”fgets”,”fgetc”,”memset”,”strlen”,”sizeof”,”strstr”,”fclose”,”FILE”,”malloc”,”fopen”,”system”。
2.底色
颜色码:#272822
3.循环相关的关键字及其他
颜色码:#f92672
以此种颜色表示的字符串(24个):
“if”,”else”,”do”,”while”,”for”,”break”,”continue”,”default”,”goto”,”case”,”switch”,”#define”,”#error”,”#include”,”#elif”,”#if”,”#else”,”#endif”,”#ifdef”,”#ifndef”,”#undef”,”#line”,”#pragma”,”return”。
参考文档和完整的文档和源码下载地址: