我正在使用一种类型的内链接在正式模块中工作。这些链接(我们称之为 X 型链接)是由 4 个不同的正式模块以 4 个深度级别制作的。例如,我在模块 A 中工作,该模块具有来自模块 B 的内链接,具有来自模块 C 的内链接,具有来自模块 D 的内链接。
我有一个视图在不同的列中显示每个链接级别:第 1 列:深度 1 链接(AB),第 2 列:深度 2 链接(BC),第 3 列:深度 3 链接(CD)。
每一列都是由这样的脚本生成的:
pragma runLim, 0
int lines[4] = {0, 0, 0, 0}
void adjustLines(int depth, showAtDepth) {
int count
for (count = 0; count < 4; count++) {
while (lines[depth-1] < lines[count]) {
if (depth == showAtDepth) displayRich("\\pard " " ")
lines[depth-1]++
}
}
}
void showIn(Object o, int depth) {
Link l
LinkRef lr
ModName_ otherMod = null
Module linkMod = null
ModuleVersion otherVersion = null
Object othero
string disp = null
string s = null
string plain, plainDisp
int plainTextLen
int count
bool doneOne = false
string linkModName = "../links/TYPE X"
for lr in all(o<-linkModName) do {
otherMod = module (sourceVersion lr)
if (!null otherMod) {
if ((!isDeleted otherMod) && (null data(sourceVersion lr))) {
load((sourceVersion lr),false)
}
}
}
for l in all(o<-linkModName) do {
otherVersion = sourceVersion l
otherMod = module(otherVersion)
if (null otherMod || isDeleted otherMod) continue
othero = source l
if (null othero) {
load(otherVersion,false)
}
othero = source l
if (null othero) continue
if (isDeleted othero) continue
int oldLines = lines[depth-1]
adjustLines(depth, 1)
bool kick = (doneOne) && (lines[depth-1] == oldLines)
if (kick) {
lines[depth-1]++
if (depth == 1) displayRich("\\pard " " ")
}
if (depth < 4) {
showIn(othero, depth+1)
}
doneOne = true
if (depth == 1) {
s = name(otherMod)
if (isBaseline(otherVersion)) {
s = s " [" versionString(otherVersion) "]"
}
s = "{\\b " s " : }"
s = s " " probeRichAttr_(othero,"Object Heading", false)
s = s " " probeRichAttr_(othero,"Object Text", false)
displayRich s
}
lines[depth-1] += 3
}
}
showIn(obj,1)
但是现在,我必须添加一个新列,其中包含在模块 C 之间定义的其他类型的链接 (Type Y),而其他新模块不直接与我的模块 (A) 链接。幸运的是,我在模块 C 的列中有这些关系(作为布局 dxl)。
如何在我的模块 (A) 中显示保存在模块 (C) 视图中的列以保存在我的当前视图中?
预先感谢您的合作和帮助