Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Daoust2004-04-28 17:02:19 +0000
committerDavid Daoust2004-04-28 17:02:19 +0000
commiteb74a7442742b53f6a919caa100367cd47c40d3f (patch)
treeb648dfff9aa1a15469b786d76e8bde1a786aaf82 /doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm
parentebeb4082c9c7cc6c1f3d1a22b713ddc2fdf0b786 (diff)
downloadorg.eclipse.cdt-eb74a7442742b53f6a919caa100367cd47c40d3f.tar.gz
org.eclipse.cdt-eb74a7442742b53f6a919caa100367cd47c40d3f.tar.xz
org.eclipse.cdt-eb74a7442742b53f6a919caa100367cd47c40d3f.zip
From Dave Williams: Screen captures were added or changed, modified all files with screen captures to use JavaScript to shrink images until the user clicks them. Updated menu lists in docs (removed tables, now shows full content below section name).
Diffstat (limited to 'doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm')
-rw-r--r--doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm11
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm
index d533801b238..5d1e4508427 100644
--- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm
+++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_outlineview.htm
@@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Outline view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
+<script>
+function changeSize(theImage,wd,ht) {
+ wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
+ if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
+ else {wdth=wd;hght=ht;}
+ theImage.style.width=wdth; theImage.style.height=hght;
+}
+</script>
</head>
<body>
@@ -15,7 +23,8 @@
<p>The Outline view displays an outline of a structured C/C++ file that is currently
open in the editor area, by listing the structural elements. </p>
-<img src="../images/outlineView.png" border="0" width="838" height="312" alt="Outline View screen capture">
+<img src="../images/outlineView.png" width="429" height="156" onClick="changeSize(this,429,156);"
+ alt="Screen capture detailing a sample application in the editor with corrisponding element in the Outline View" title="click to toggle image size"></li>
<p>The Outline view shows the following elements in the source file in the order
in which they occur:</p>

Back to the top