summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
4aaef12)
wxWindows classes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13343
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
The only default filename in the list is {\tt psbox.tex}.}
\twocolitem{\inioption{isInteractive}}{If true, runs in interactive mode (the default).}
\twocolitem{\inioption{runTwice}}{If true, runs the converter twice.}
The only default filename in the list is {\tt psbox.tex}.}
\twocolitem{\inioption{isInteractive}}{If true, runs in interactive mode (the default).}
\twocolitem{\inioption{runTwice}}{If true, runs the converter twice.}
+\twocolitem{\inioption{ignoreBadRefs}}{If true (or yes), ignores bad helpref references
+and simply writes the text in the first argument. Useful when a program such as HelpGen
+generates references to classes documented in another manual.}
\end{twocollist}
\subsubsection{Presentation options}\index{options, presentation}%
\end{twocollist}
\subsubsection{Presentation options}\index{options, presentation}%
{
if (helpRefText)
TraverseChildrenFromChunk(helpRefText);
{
if (helpRefText)
TraverseChildrenFromChunk(helpRefText);
- TexOutput(" (REF NOT FOUND)");
+ if (!ignoreBadRefs)
+ TexOutput(" (REF NOT FOUND)");
wxString errBuf;
errBuf.Printf("Warning: unresolved reference '%s'", refName);
OnInform((char *)errBuf.c_str());
wxString errBuf;
errBuf.Printf("Warning: unresolved reference '%s'", refName);
OnInform((char *)errBuf.c_str());
// This is defined in the Tex2Any library and isn't in use after parsing
extern char *BigBuffer;
// This is defined in the Tex2Any library and isn't in use after parsing
extern char *BigBuffer;
extern wxHashTable TexReferences;
extern wxHashTable TexReferences;
// Are we in verbatim mode? If so, format differently.
static bool inVerbatim = FALSE;
// Are we in verbatim mode? If so, format differently.
static bool inVerbatim = FALSE;
const int PageWidth = 12242; // 8.25 inches wide for A4
const int PageWidth = 12242; // 8.25 inches wide for A4
+// Remember the anchor in a helpref
+static TexChunk *helpRefText = NULL;
/*
* Flag to say we've just issued a \par\pard command, so don't
/*
* Flag to say we've just issued a \par\pard command, so don't
TexOutput("{\\i ");
else
TexOutput("}");
TexOutput("{\\i ");
else
TexOutput("}");
+
+ if (start)
+ helpRefText = GetArgChunk();
+
return TRUE;
}
else if ((GetNoArgs() - arg_no) == 0) // Arg = 2, or 3 if first is optional
{
if (macroId != ltHELPREFN)
{
return TRUE;
}
else if ((GetNoArgs() - arg_no) == 0) // Arg = 2, or 3 if first is optional
{
if (macroId != ltHELPREFN)
{
+ char *refName = GetArgData();
+ TexRef *texRef = NULL;
+ if (refName)
+ texRef = FindReference(refName);
- TexOutput(" (");
- char *refName = GetArgData();
+ if (texRef || !ignoreBadRefs)
+ TexOutput(" (");
+ if (texRef || !ignoreBadRefs)
- char *s = GetArgData();
- TexOutput("p. ");
- TexOutput("{\\field{\\*\\fldinst PAGEREF ");
- TexOutput(refName);
- TexOutput(" \\\\* MERGEFORMAT }{\\fldrslt ??}}");
- }
- else
- {
- // Only print section name if we're not in Word mode,
- // so can't do page references
- TexRef *texRef = FindReference(refName);
- if (texRef)
- TexOutput(texRef->sectionName) ; TexOutput(" "); TexOutput(texRef->sectionNumber);
+ char *s = GetArgData();
+ TexOutput("p. ");
+ TexOutput("{\\field{\\*\\fldinst PAGEREF ");
+ TexOutput(refName);
+ TexOutput(" \\\\* MERGEFORMAT }{\\fldrslt ??}}");
- TexOutput("??");
- sprintf(buf, "Warning: unresolved reference '%s'", refName);
- OnInform(buf);
+ // Only print section name if we're not in Word mode,
+ // so can't do page references
+ if (texRef)
+ {
+ TexOutput(texRef->sectionName) ; TexOutput(" "); TexOutput(texRef->sectionNumber);
+ }
+ else
+ {
+ if (!ignoreBadRefs)
+ TexOutput("??");
+ sprintf(buf, "Warning: unresolved reference '%s'", refName);
+ OnInform(buf);
+ }
}
}
}
else TexOutput("??");
}
}
}
}
else TexOutput("??");
}
+ else
+ {
+ if (texRef || !ignoreBadRefs)
+ TexOutput(")");
+ }
char *followedLinkColourString = NULL;
bool combineSubSections = FALSE;
bool htmlWorkshopFiles = FALSE;
char *followedLinkColourString = NULL;
bool combineSubSections = FALSE;
bool htmlWorkshopFiles = FALSE;
+bool ignoreBadRefs = FALSE;
extern char *followedLinkColourString; // HTML followed link colour
extern bool combineSubSections; // Stop splitting files below section
extern bool htmlWorkshopFiles; // generate HTML Help Workshop project files
extern char *followedLinkColourString; // HTML followed link colour
extern bool combineSubSections; // Stop splitting files below section
extern bool htmlWorkshopFiles; // generate HTML Help Workshop project files
+extern bool ignoreBadRefs; // Don't insert (REF NOT FOUND)
// Names to help with internationalisation
extern char *ContentsNameString;
// Names to help with internationalisation
extern char *ContentsNameString;
htmlFrameContents = StringTobool(settingValue);
else if (StringMatch(settingName, "upperCaseNames", FALSE, TRUE))
upperCaseNames = StringTobool(settingValue);
htmlFrameContents = StringTobool(settingValue);
else if (StringMatch(settingName, "upperCaseNames", FALSE, TRUE))
upperCaseNames = StringTobool(settingValue);
+ else if (StringMatch(settingName, "ignoreBadRefs", FALSE, TRUE))
+ ignoreBadRefs = StringTobool(settingValue);
else if (StringMatch(settingName, "winHelpTitle", FALSE, TRUE))
{
if (winHelpTitle)
else if (StringMatch(settingName, "winHelpTitle", FALSE, TRUE))
{
if (winHelpTitle)