Browse Source

dynamic help: I forgot the 3 images for the toolstrip (required to compile) and the HTML file and the 2 *Book.png images for the dynamic help (required to use DH)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@458 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Mathias Simmack 21 years ago
parent
commit
c115d07ebf
  1. BIN
      src/AddIns/Misc/HtmlHelp2/Project/Resources/ClosedBook.png
  2. BIN
      src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Index.png
  3. BIN
      src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Search.png
  4. BIN
      src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Toc.png
  5. BIN
      src/AddIns/Misc/HtmlHelp2/Project/Resources/OpenBook.png
  6. 46
      src/AddIns/Misc/HtmlHelp2/Project/Resources/context.html

BIN
src/AddIns/Misc/HtmlHelp2/Project/Resources/ClosedBook.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

BIN
src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Index.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 751 B

BIN
src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Search.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 714 B

BIN
src/AddIns/Misc/HtmlHelp2/Project/Resources/HtmlHelp2.16x16.Toc.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

BIN
src/AddIns/Misc/HtmlHelp2/Project/Resources/OpenBook.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

46
src/AddIns/Misc/HtmlHelp2/Project/Resources/context.html

@ -0,0 +1,46 @@ @@ -0,0 +1,46 @@
<html>
<head>
<title>Dynamic Help</title>
<STYLE><!--
.ctxbody {
overflow-y: auto;
margin: 5px 5px 5px 5px;
font-family: Tahoma;
font-size: 8pt;
white-space: nowrap;
}
.section {
margin-top: 5px;
margin-bottom: 35px;
}
.link {
color:blue;
text-decoration:underline;
cursor:pointer;
}
-->
</STYLE>
<script type="text/javascript"><!--
function ExpandCollapse(idx)
{
var contentSpan = document.getElementById("content_" + idx);
if(contentSpan != null)
{
contentSpan.style.display = (contentSpan.style.display == "none")?"":"none";
}
var sectionImage = document.getElementById("image_" + idx);
if(sectionImage != null)
{
sectionImage.src = (contentSpan.style.display == "none")?"ClosedBook.png":"OpenBook.png";
}
}
--></script>
</head>
<body class="ctxbody"></body>
</html>
Loading…
Cancel
Save