摘要:
属性/样式初始化【转】一、PP_AttrProp类 1、类功能说明,代表了一个相同类型的属性/样式集合 PP_AttrProp captures the complete set of XML and CSS Attributes/Properties for a piece of the document. These are generally created by the file-reader. Attributes represent all of the attribute/value pairs in the XML with the exception of the PT_PR 阅读全文
摘要:
Abiword文档对象初始化新建或开发文档PD_Document类的实例化如果是新建文档,调用PD_Document::newDocument函数创建新文档,或则调用PD_Document::readFromFile打开一个文档。pt_PieceTable类的实例化,通过该类初始化文档的物理存储架构。也就是PieceTable数据结构的实现pf_Frag_Strux_Section类,该类实例化后放入pf_Fragments中。pf_Frag_Strux_Block 类,同样放入pf_Fragments中。pf_Frag 类,实例化pf_Frag::PFT_EndOfDoc的对象,表示文档结尾 阅读全文
摘要:
AbiWordDevelopmentContents1AbiWord Development Area1.1Place content here related to AbiWord Development.1.1.1General Description of AbiWord's Layout code1.1.2Proposals and Whacky Ideas1.1.3Accessibility1.1.4Online document reader1.1.4.1Benefits of using abiword over a browser1.1.5Use a cooperate 阅读全文
摘要:
Layout CodeContainer classesHere is the general description of how AbiWord supports layoutobjects like tables, footnotes, text frames, positioned images and to allow text to flow around images and other embedded objects. Note that this text originates from around 2001 and almost certainly contains i 阅读全文
摘要:
AbiWord Documentation【转】IntroductionOne of the major bits of AbiWord word processing code is the Piece TablePieceTableTodo:Add more class names / links to sources.IntroductionApt_PieceTableis the data structure used to represent the document. It presents an interface to access the document content a 阅读全文
摘要:
【转】1、正文列选中:按住ALT+鼠标选择。2、插入“域”--索引和目录(链接与引用),一次性插入目录,先插入索引与目录,RD。全部插入所有文件的RD后,然后再插入TOC。3、F4:重复上一操作。4、按住ALT+鼠标拖动表格线,可以连续性移动表格线。5、字号与磅值对照:字号初号小初一号小一二号小二三号小三四号小四五号小五六号小六七号八号磅4236262422181615141210.597.56.55.556、使用分节符,而不是使用分页符,更不要使用硬回车来分页,要不前面一变动,后面跟着都变了。使用分节的好处是可以控制文档内可以有不同的页眉、页脚,以及在同一个页面上有不同的设置,在同一个文档里 阅读全文
摘要:
【转】Text Model 存储文本以及相应属性的模型,主要有两种不同的实现策略:树形结构和平面结构。树形结构类似 Dom,可以很好的表现结构化文档,但是比较复杂。平面结构相对简单的多,大多数的编辑器(e.g. Emacs),字处理器(e.g. AbiWord, OpenOffice)都用的是平面结构。Text Model Coords 用来在 Text Model 中定位的坐标系。对于树形结构的 Text Model 其定位方式为节点链接(或指向节点的路径 e.g. XPath)以及节点内偏移值。对于平面结构则仅仅是一个索引值。Text Presentation 展示文本的模型,一般分别为 阅读全文
摘要:
echo hello bat fileif exist try.bat echo yes found it>D:\hellobat.txt rem 将yes found it 写入文件。echo 当前盘符:%~d0echo 当前盘符和路径:%~dp0echo 当前批处理全路径:%~f0echo 当前盘符和路径的短文件名格式:%~sdp0echo 当前CMD默认目录:%cd%pause@pause 阅读全文
摘要:
#include #include int main(int argc, char** argv){ int maxLen=0; //N = argc; char **ptr = NULL; int i = 0; //============以下程序是为了求出argv[][]数组中最长的串长度,把最长串长度保存在maxLen里 maxLen=strlen(argv[0]); for (i = 1; i strlen(argv[i])?maxLen:strlen(argv[i]); } //maxLen自增,是为了多出一个位置以便存放字符串结束符'\0' maxLen++;... 阅读全文
摘要:
Windows服务编写综述 作者:李朝中 摘要:几乎所有的操作系统在启动的时候都会启动一些不需要与用户交互的进程,这些进程在Windows中就被称作服务。它由服务程序、服务控制程序(SCP,service control program)和服务控制管理器(SCM,service control manager)三个组件构成。本文针对服务程序与服务控制程序的编写进行综合讲述。 关键词:Windows,服务,VC++1 服务介绍几乎所有的操作系统在启动的时候都会启动一些不需要与用户交互的进程,这些进程在Windows中就被称作服务。它通常用于实现客户/服务器模式中的服务器方,如我们常见的Web服务 阅读全文