1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
2<!--
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * Select dialog window.
23-->
24<html>
25	<head>
26		<title>Select Properties</title>
27		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
28		<meta content="noindex, nofollow" name="robots">
29		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
30		<script type="text/javascript" src="fck_select/fck_select.js"></script>
31		<script type="text/javascript">
32
33var oEditor = window.parent.InnerDialogLoaded() ;
34
35// Gets the document DOM
36var oDOM = oEditor.FCK.EditorDocument ;
37
38var oActiveEl = oEditor.FCKSelection.GetSelectedElement() ;
39
40var oListText ;
41var oListValue ;
42
43window.onload = function()
44{
45	// First of all, translate the dialog box texts
46	oEditor.FCKLanguageManager.TranslatePage(document) ;
47
48	oListText	= document.getElementById( 'cmbText' ) ;
49	oListValue	= document.getElementById( 'cmbValue' ) ;
50
51	if ( oActiveEl && oActiveEl.tagName == 'SELECT' )
52	{
53		GetE('txtName').value		= oActiveEl.name ;
54		GetE('txtSelValue').value	= oActiveEl.value ;
55		GetE('txtLines').value		= GetAttribute( oActiveEl, 'size' ) ;
56		GetE('chkMultiple').checked	= oActiveEl.multiple ;
57
58		// Load the actual options
59		for ( var i = 0 ; i < oActiveEl.options.length ; i++ )
60		{
61			var sText	= HTMLDecode( oActiveEl.options[i].innerHTML ) ;
62			var sValue	= oActiveEl.options[i].value ;
63
64			AddComboOption( oListText, sText, sText ) ;
65			AddComboOption( oListValue, sValue, sValue ) ;
66		}
67	}
68	else
69		oActiveEl = null ;
70
71	window.parent.SetOkButton( true ) ;
72}
73
74function Ok()
75{
76	oEditor.FCKUndo.SaveUndoStep() ;
77
78	var sSize = GetE('txtLines').value ;
79	if ( sSize == null || isNaN( sSize ) || sSize <= 1 )
80		sSize = '' ;
81
82	if ( !oActiveEl )
83	{
84		oActiveEl = oEditor.FCK.InsertElement( 'select' ) ;
85	}
86
87	SetAttribute( oActiveEl, 'name'	, GetE('txtName').value ) ;
88	SetAttribute( oActiveEl, 'size'	, sSize ) ;
89	oActiveEl.multiple = ( sSize.length > 0 && GetE('chkMultiple').checked ) ;
90
91	// Remove all options.
92	while ( oActiveEl.options.length > 0 )
93		oActiveEl.remove(0) ;
94
95	// Add all available options.
96	for ( var i = 0 ; i < oListText.options.length ; i++ )
97	{
98		var sText	= oListText.options[i].value ;
99		var sValue	= oListValue.options[i].value ;
100		if ( sValue.length == 0 ) sValue = sText ;
101
102		var oOption = AddComboOption( oActiveEl, sText, sValue, oDOM ) ;
103
104		if ( sValue == GetE('txtSelValue').value )
105		{
106			SetAttribute( oOption, 'selected', 'selected' ) ;
107			oOption.selected = true ;
108		}
109	}
110
111	return true ;
112}
113
114		</script>
115	</head>
116	<body style='OVERFLOW: hidden' scroll='no'>
117		<table width="100%" height="100%">
118			<tr>
119				<td>
120					<table width="100%">
121						<tr>
122							<td nowrap><span fckLang="DlgSelectName">Name</span>&nbsp;</td>
123							<td width="100%" colSpan="2"><input id="txtName" style="WIDTH: 100%" type="text"></td>
124						</tr>
125						<tr>
126							<td nowrap><span fckLang="DlgSelectValue">Value</span>&nbsp;</td>
127							<td width="100%" colSpan="2"><input id="txtSelValue" style="WIDTH: 100%; BACKGROUND-COLOR: buttonface" type="text" readonly></td>
128						</tr>
129						<tr>
130							<td nowrap><span fckLang="DlgSelectSize">Size</span>&nbsp;</td>
131							<td nowrap><input id="txtLines" type="text" size="2" value="">&nbsp;<span fckLang="DlgSelectLines">lines</span></td>
132							<td nowrap align="right"><input id="chkMultiple" name="chkMultiple" type="checkbox"><label for="chkMultiple" fckLang="DlgSelectChkMulti">Allow
133									multiple selections</label></td>
134						</tr>
135					</table>
136					<br>
137					<hr style="POSITION: absolute">
138					<span style="LEFT: 10px; POSITION: relative; TOP: -7px" class="BackColor">&nbsp;<span fckLang="DlgSelectOpAvail">Available
139							Options</span>&nbsp;</span>
140					<table width="100%">
141						<tr>
142							<td width="50%"><span fckLang="DlgSelectOpText">Text</span><br>
143								<input id="txtText" style="WIDTH: 100%" type="text" name="txtText">
144							</td>
145							<td width="50%"><span fckLang="DlgSelectOpValue">Value</span><br>
146								<input id="txtValue" style="WIDTH: 100%" type="text" name="txtValue">
147							</td>
148							<td vAlign="bottom"><input onclick="Add();" type="button" fckLang="DlgSelectBtnAdd" value="Add"></td>
149							<td vAlign="bottom"><input onclick="Modify();" type="button" fckLang="DlgSelectBtnModify" value="Modify"></td>
150						</tr>
151						<tr>
152							<td rowSpan="2"><select id="cmbText" style="WIDTH: 100%" onchange="GetE('cmbValue').selectedIndex = this.selectedIndex;Select(this);"
153									size="5" name="cmbText"></select>
154							</td>
155							<td rowSpan="2"><select id="cmbValue" style="WIDTH: 100%" onchange="GetE('cmbText').selectedIndex = this.selectedIndex;Select(this);"
156									size="5" name="cmbValue"></select>
157							</td>
158							<td vAlign="top" colSpan="2">
159							</td>
160						</tr>
161						<tr>
162							<td vAlign="bottom" colSpan="2"><input style="WIDTH: 100%" onclick="Move(-1);" type="button" fckLang="DlgSelectBtnUp" value="Up">
163								<br>
164								<input style="WIDTH: 100%" onclick="Move(1);" type="button" fckLang="DlgSelectBtnDown"
165									value="Down">
166							</td>
167						</tr>
168						<TR>
169							<TD vAlign="bottom" colSpan="4"><INPUT onclick="SetSelectedValue();" type="button" fckLang="DlgSelectBtnSetValue" value="Set as selected value">&nbsp;&nbsp;
170								<input onclick="Delete();" type="button" fckLang="DlgSelectBtnDelete" value="Delete"></TD>
171						</TR>
172					</table>
173				</td>
174			</tr>
175		</table>
176	</body>
177</html>
178