This commit is contained in:
ChenX
2024-09-25 11:57:15 +08:00
parent acd7eaaca0
commit 20c3f892e7
2033 changed files with 2355 additions and 23125 deletions

View File

@@ -0,0 +1,6 @@
export declare enum FontStyleKeyCode {
Height = 1,
WidthFactor = 2,
FontType = 3
}
//# sourceMappingURL=FontStyleKeyCodeEnum.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontStyleKeyCodeEnum.d.ts","sourceRoot":"","sources":["../../../../src/DatabaseServices/FontStyle/FontStyleKeyCodeEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAExB,MAAM,IAAI;IACV,WAAW,IAAI;IACf,QAAQ,IAAI;CACf"}

View File

@@ -0,0 +1,10 @@
import { CADFiler } from "../CADFiler";
import { ObjectId } from "../ObjectId";
import { SymbolTable } from "../Tables/SymbolTable";
export declare class FontStyleTable extends SymbolTable {
Current: ObjectId;
get FontStyleNames(): string[];
ReadFile(file: CADFiler): void;
WriteFile(file: CADFiler): void;
}
//# sourceMappingURL=FontStyleTable.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontStyleTable.d.ts","sourceRoot":"","sources":["../../../../src/DatabaseServices/FontStyle/FontStyleTable.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,qBACa,cAAe,SAAQ,WAAW;IAE3C,OAAO,EAAE,QAAQ,CAAC;IAElB,IAAI,cAAc,IAAI,MAAM,EAAE,CAM7B;IAIQ,QAAQ,CAAC,IAAI,EAAE,QAAQ;IAOvB,SAAS,CAAC,IAAI,EAAE,QAAQ;CAOpC"}

View File

@@ -0,0 +1,17 @@
import { FontType } from "../../Add-on/TextStyle/FontStyleInterface";
import { CADFiler } from "../CADFiler";
import { SymbolTableRecord } from "../SymbolTableRecord";
/**
* 字体样式
*/
export declare class FontStyleRecord extends SymbolTableRecord {
/** 字体高度 1 */
Height: number;
/** 宽度因子 2 字符串间距 */
WidthFactor: number;
/** 样式类型 3 */
FontType: FontType;
ReadFile(file: CADFiler): void;
WriteFile(file: CADFiler): void;
}
//# sourceMappingURL=FontsStyleRecord.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontsStyleRecord.d.ts","sourceRoot":"","sources":["../../../../src/DatabaseServices/FontStyle/FontsStyleRecord.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAGrE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEzD;;GAEG;AACH,qBACa,eAAgB,SAAQ,iBAAiB;IAElD,aAAa;IACD,MAAM,EAAE,MAAM,CAAM;IAEhC,mBAAmB;IACP,WAAW,EAAE,MAAM,CAAK;IAEpC,aAAa;IACD,QAAQ,EAAE,QAAQ,CAAkB;IAIvC,QAAQ,CAAC,IAAI,EAAE,QAAQ;IAWvB,SAAS,CAAC,IAAI,EAAE,QAAQ;CAUpC"}