-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.Tabulation.htm
86 lines (76 loc) · 2.1 KB
/
Module.Tabulation.htm
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
<!DOCTYPE HTML>
<html>
<head>
<title>Les tabulations</title>
<link rel="stylesheet" type="text/css" href="src/css/styles.css">
<link rel="stylesheet" type="text/css" href="src/css/syntaxes.css">
<style>
.editor {
width:100%;
height:400px;
}
#eResult1 {
border: 1px solid #000;
}
</style>
</head>
<body spellcheck="false">
<a href="./index.htm">index</a>
<h1>Les tabulations</h1>
<div><h2>Objectif</h2>
<ul>
<li>Gérer la dimension des tabulations.</li>
</ul>
</div>
<div><h2>Diagramme</h2>
<img src="diagram/Class.Tabulation.gif">
</div>
<div><h2>Aperçu</h2>
<textarea id="eSource" wrap="off" style="width:45%; height:400px; display:none;">
</textarea>
<div id="eEditeur1"></div>
</div>
<div id="eContents"><!--var Tabulation =(function(){
var Tab =function( oCharacter, nSize, bSoftTab ){
this.oCharacter = oCharacter
this.bSoftTab = bSoftTab
this.setMaxSize( nSize||8 )
Events.add( oCharacter, 'sizechange', CallBack( this, 'refresh' ))
}
Tab.HTML = '<i class="tab">\t</i>'
Tab.prototype ={
refresh :function(){
CssRules.add( '.tab { width:'+ this.oCharacter.nWidth*this.size +'px; }' )
},
setMaxSize :function( n ){
if(n<1) n=1
this.size = n
this.TOKEN = 'B'+'='.repeat( n-1 )
this.refresh()
}
}
return Tab
})()
--></div>
<script src="shared.js"></script>
<script src="src/js/Editor.js"></script>
<script src="src/js/Commands.js"></script>
<script src="src/js/KeyBoard.js"></script>
<script src="src/js/Selection.js"></script>
<script src="src/js/UndoStack.js"></script>
<script src="src/js/Syntax.js"></script>
<script src="src/js/Brackets.js"></script>
<script src="src/js/Fold.js"></script>
<script src="src/js/TextMarker.js"></script>
<script>
_( 'eEditeur1,eSource,eContents,eTOKENS' )
eSource.value = eContents.firstChild.data
var oEditor = new Editor ( eEditeur1, { sSyntax:'JS', sTopMenu:'TabSize' })
var D = oEditor.newDoc( 'Source', eSource.value )
oEditor.execCommand( 'FOLD_LEVEL_3' )
</script>
<link rel="stylesheet" type="text/css" href="src/toc.css">
<script src="src/toc.js"></script>
<script>setTOC("Module.Tabulation.htm")</script>
</body>
</html>