-
Notifications
You must be signed in to change notification settings - Fork 0
/
FittedDSModel.html
174 lines (159 loc) · 4.33 KB
/
FittedDSModel.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>RICORDO Demo</title>
<!--
This example demonstrates part of the functionalities available using the zinc plugin.
-->
<script src="soapclient.js" type="text/javascript"></script>
<script src="FittedDSModel.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<style type="text/css">
body {
font-family: arial, helvetica, serif;
}
#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
line-height: 1;
border: solid #eda;
border-width: 1px 0;
}
#nav a {
display: block;
width: 10em;
}
#nav li { /* all list items */
float: left;
width: 10em; /* width needed or else Opera goes nuts */
}
#nav li ul { /* second-level lists */
position: absolute;
background: orange;
width: 10em;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
left: auto;
}
table.noborder {
border-width: 0px 0px 0px 0px;
border-spacing: 0px;
}
</style>
</head>
<body>
<p> RICORDO Demo 04/2012<br/>
</p>
<table class="noborder">
<tr>
<td>
<td>
<div style="position:relative">
<div style="position:relative; ;z-index: 0">
<object id="zincplugin1" type="application/x-zinc-plugin" width="600" height="600" onsceneviewerready="sceneViewerReadyFunction()"></div>
<div style="position:absolute; top: 50; z-index: 1">This text is above the plugin</div>
<div style="position:absolute; top: 80; z-index: -1">This text is underneath the plugin</div>
</div>
</td>
<form id="testform">
<table>
<tr>
<div id="patient_text" style="DISPLAY: block">
<p>List of patients</p>
</div>
</tr>
<tr>
<div id="radio" style="DISPLAY: block">
<input type="radio" id="radio1" name="radio" /><label for="radio1">Patient 1</label>
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Patient 2</label>
<input type="radio" id="radio3" name="radio" /><label for="radio3">Patient 3</label>
</div>
</tr>
<tr>
<div id="select_patient_text" style="DISPLAY: block">
<p>Select patient click next</p>
</div>
<div id="select_segmentation_text" style="DISPLAY: none">
<p>Select model type for segmentation</p>
<p>then click next to segment</p>
</div>
<td>
<select id="mySelect" style="DISPLAY: none">
<option value="1">none</option>
<option value="2">biventricular</option>
<option value="3">One chamber</option>
<option value="4">LV</option>
<option value="5">RV</option>
<option value="6">full heart</option>
</select>
</td>
</tr>
<tr>
<td>
<div id="initialization_landmarks_textbox" style="DISPLAY: none">
<p> Landmarks values: </p>
<input type="text" name="initialization_landmarks" id="initialization_landmarks" value="407.818,172.45,177.63;416.298,152.406,177.499;416.102,152.22,117.806" size="70" /><br/>
</div>
</td>
</tr>
<tr>
<td>
<div id="proteinSelector_panel" style="DISPLAY: none">
<p>Select protein</p>
<select id="proteinSelector">
<option value="1">none</option>
<option value="2">clcn1</option>
<option value="3">SCN5A</option>
<option value="4">kvlqt1</option>
</select>
</div>
</td>
</tr>
<tr>
<td>
<div id="next_to_fit_mesh_text" style="DISPLAY: none">
<p>Click next to fit mesh</p>
</div>
</td>
</tr>
<tr>
<td>
<div id="now_loading_text" style="DISPLAY: none">
<p>Now Loading...</p>
</div>
</td>
</tr>
<tr>
<td>
<div id="click_next_to_see_density_text" style="DISPLAY: none">
<p>Click next to see density</p>
</div>
</td>
</tr>
<tr>
<td>
<input id="next_button" type=button OnClick="next()" value="Next" style="DISPLAY: block">
</td>
</tr>
</tr>
</table>
</td>
</form>
</tr>
</table>
<!--
<p>This demo requires Zinc0.7.0.0 to run. Please see
<a href="http://www.cmiss.org/cmgui/zinc">http://www.cmiss.org/cmgui/zinc</a> for more information.
<br/>
</p>
-->
<!-- Created: Mon Apr 16 11:22:57 NZST 2012 By Alan Wu -->
<!-- hhmts start -->
<!--
Last modified: Thursday Apr 19 NZDT 2012
-->
<!-- hhmts end -->
</body>
</html>