Subversion Repositories Applications.papyrus

Rev

Rev 1925 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1925 Rev 2048
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<!--
2
<!--
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
5
 *
5
 *
6
 * == BEGIN LICENSE ==
6
 * == BEGIN LICENSE ==
7
 *
7
 *
8
 * Licensed under the terms of any of the following licenses at your
8
 * Licensed under the terms of any of the following licenses at your
9
 * choice:
9
 * choice:
10
 *
10
 *
11
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *  - GNU General Public License Version 2 or later (the "GPL")
12
 *    http://www.gnu.org/licenses/gpl.html
12
 *    http://www.gnu.org/licenses/gpl.html
13
 *
13
 *
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15
 *    http://www.gnu.org/licenses/lgpl.html
15
 *    http://www.gnu.org/licenses/lgpl.html
16
 *
16
 *
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
19
 *
19
 *
20
 * == END LICENSE ==
20
 * == END LICENSE ==
21
 *
21
 *
22
 * Useful page that enumerates all icons in the skins strips.
22
 * Useful page that enumerates all icons in the skins strips.
23
-->
23
-->
24
<html xmlns="http://www.w3.org/1999/xhtml">
24
<html xmlns="http://www.w3.org/1999/xhtml">
25
<head>
25
<head>
26
	<title>FCKeditor - View Icons Strips</title>
26
	<title>FCKeditor - View Icons Strips</title>
27
	<style type="text/css">
27
	<style type="text/css">
28
		.TB_Button_Image
28
		.TB_Button_Image
29
		{
29
		{
30
			overflow: hidden;
30
			overflow: hidden;
31
			width: 16px;
31
			width: 16px;
32
			height: 16px;
32
			height: 16px;
33
			margin: 3px;
33
			margin: 3px;
34
			background-repeat: no-repeat;
34
			background-repeat: no-repeat;
35
		}
35
		}
36
 
36
 
37
		.TB_Button_Image img
37
		.TB_Button_Image img
38
		{
38
		{
39
			position: relative;
39
			position: relative;
40
		}
40
		}
41
	</style>
41
	</style>
42
	<script type="text/javascript">
42
	<script type="text/javascript">
43
 
43
 
44
window.onload = function()
44
window.onload = function()
45
{
45
{
46
	var eImg1 = document.createElement( 'img' ) ;
46
	var eImg1 = document.createElement( 'img' ) ;
47
	eImg1.onload = Img_OnLoad ;
47
	eImg1.onload = Img_OnLoad ;
48
	eImg1.src = 'default/fck_strip.gif' ;
48
	eImg1.src = 'default/fck_strip.gif' ;
49
 
49
 
50
	var eImg2 = document.createElement( 'img' ) ;
50
	var eImg2 = document.createElement( 'img' ) ;
51
	eImg2.onload = Img_OnLoad ;
51
	eImg2.onload = Img_OnLoad ;
52
	eImg2.src = 'office2003/fck_strip.gif' ;
52
	eImg2.src = 'office2003/fck_strip.gif' ;
53
 
53
 
54
	var eImg3 = document.createElement( 'img' ) ;
54
	var eImg3 = document.createElement( 'img' ) ;
55
	eImg3.onload = Img_OnLoad ;
55
	eImg3.onload = Img_OnLoad ;
56
	eImg3.src = 'silver/fck_strip.gif' ;
56
	eImg3.src = 'silver/fck_strip.gif' ;
57
}
57
}
58
 
58
 
59
var iTotalStrips = 3 ;
59
var iTotalStrips = 3 ;
60
var iMaxHeight = 0 ;
60
var iMaxHeight = 0 ;
61
 
61
 
62
function Img_OnLoad()
62
function Img_OnLoad()
63
{
63
{
64
	if ( iMaxHeight < this.height )
64
	if ( iMaxHeight < this.height )
65
		iMaxHeight = this.height ;
65
		iMaxHeight = this.height ;
66
 
66
 
67
	iTotalStrips-- ;
67
	iTotalStrips-- ;
68
 
68
 
69
	if ( iTotalStrips == 0 )
69
	if ( iTotalStrips == 0 )
70
		LoadIcons( iMaxHeight / 16 ) ;
70
		LoadIcons( iMaxHeight / 16 ) ;
71
}
71
}
72
 
72
 
73
function LoadIcons( total )
73
function LoadIcons( total )
74
{
74
{
75
	var xIconsTable = document.getElementById( 'xIconsTable' ) ;
75
	var xIconsTable = document.getElementById( 'xIconsTable' ) ;
76
 
76
 
77
	for ( var i = 0 ; i < total ; i++ )
77
	for ( var i = 0 ; i < total ; i++ )
78
	{
78
	{
79
		var eRow = xIconsTable.insertRow(-1) ;
79
		var eRow = xIconsTable.insertRow(-1) ;
80
 
80
 
81
		var eCell = eRow.insertCell(-1) ;
81
		var eCell = eRow.insertCell(-1) ;
82
		eCell.innerHTML = i + 1 ;
82
		eCell.innerHTML = i + 1 ;
83
 
83
 
84
		eCell = eRow.insertCell(-1) ;
84
		eCell = eRow.insertCell(-1) ;
85
		eCell.align = 'center' ;
85
		eCell.align = 'center' ;
86
		eCell.style.border = '#dcdcdc 1px solid' ;
86
		eCell.style.border = '#dcdcdc 1px solid' ;
87
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="default/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
87
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="default/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
88
 
88
 
89
		eCell = eRow.insertCell(-1) ;
89
		eCell = eRow.insertCell(-1) ;
90
		eCell.align = 'center' ;
90
		eCell.align = 'center' ;
91
		eCell.style.border = '#dcdcdc 1px solid' ;
91
		eCell.style.border = '#dcdcdc 1px solid' ;
92
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="office2003/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
92
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="office2003/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
93
 
93
 
94
		eCell = eRow.insertCell(-1) ;
94
		eCell = eRow.insertCell(-1) ;
95
		eCell.align = 'center' ;
95
		eCell.align = 'center' ;
96
		eCell.style.border = '#dcdcdc 1px solid' ;
96
		eCell.style.border = '#dcdcdc 1px solid' ;
97
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="silver/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
97
		eCell.innerHTML = '<div class="TB_Button_Image"><img src="silver/fck_strip.gif" style="top:-' + ( i * 16 ) + 'px;"><\/div>' ;
98
	}
98
	}
99
}
99
}
100
 
100
 
101
	</script>
101
	</script>
102
</head>
102
</head>
103
<body>
103
<body>
104
	<table id="xIconsTable">
104
	<table id="xIconsTable">
105
		<tr>
105
		<tr>
106
			<td rowspan="2">
106
			<td rowspan="2">
107
				Index</td>
107
				Index</td>
108
			<td align="center" colspan="3">
108
			<td align="center" colspan="3">
109
				Skins</td>
109
				Skins</td>
110
		</tr>
110
		</tr>
111
		<tr>
111
		<tr>
112
			<td width="80" align="center">
112
			<td width="80" align="center">
113
				default</td>
113
				default</td>
114
			<td width="80" align="center">
114
			<td width="80" align="center">
115
				office2003</td>
115
				office2003</td>
116
			<td width="80" align="center">
116
			<td width="80" align="center">
117
				silver</td>
117
				silver</td>
118
		</tr>
118
		</tr>
119
	</table>
119
	</table>
120
</body>
120
</body>
121
</html>
121
</html>