-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAlbExamplesSeeClassSide.class.st
More file actions
711 lines (629 loc) · 24 KB
/
Copy pathAlbExamplesSeeClassSide.class.st
File metadata and controls
711 lines (629 loc) · 24 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
Class {
#name : #AlbExamplesSeeClassSide,
#superclass : #Object,
#classVars : [
'BigString'
],
#category : #'Album-Examples-TRY-HERE'
}
{ #category : #accessing }
AlbExamplesSeeClassSide class >> ascent [
^ -20
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> bigString [
"1000000000 is 1Go, ~200 000 pages in LibreOffice - 3 600 000 lines on TextMaker "
^ BigString ifNil: [ BigString := String loremIpsum: 1000000000 ]
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> bigStringFromFile [
" self bigStringFromFile "
| fref stream |
fref := 'bigFile.txt' asFileReference.
fref exists ifFalse: [ self inform: fref fullName, ' does''nt exists' ].
stream := fref readStream.
BigString := stream contents.
stream close
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> bigStringToFile [
" self bigStringToFile "
| fref stream |
fref := 'bigFile.txt' asFileReference.
fref deleteIfAbsent: [ ].
stream := fref writeStream.
stream nextPutAll: self bigString.
stream close
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> cleanUp [
super cleanUp.
BigString := nil
]
{ #category : #accessing }
AlbExamplesSeeClassSide class >> descent [
^ 20
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> embeddedFontsText [
"
AeFontSlant: normal italic oblique.
AeFontWeight: black bold extraBlack extraBold extraLight light medium normal semiBold semiLight thin
AeFontStretch: condensed expanded extraCondensed extraExpanded normal semiCondensed semiExpanded ultraCondensed ultraExpanded
"
| aManager allSlants allWeights allStreches text allChars |
allChars := 'azertyuiopqsdfghjklmwxcvbn' , String cr , 'AZERTYUIOPQSDFGHJKLMWXCVBN' , String cr , '1234567890'
, String cr , '@&é"''[(§è!çà)]-#°_¨*%£+/*.?' , String cr , '~^$`ù=:;,~|'.
"AeFontManager resetGlobalInstance."
aManager := AeFontManager new scanEmbeddedFonts; yourself.
allSlants := {
BlFontSlant normal.
BlFontSlant italic.
BlFontSlant oblique }.
allWeights := {
BlFontWeight normal.
BlFontWeight light.
BlFontWeight extraLight.
BlFontWeight medium.
BlFontWeight bold.
BlFontWeight semiBold.
BlFontWeight extraBold.
BlFontWeight black.
BlFontWeight extraBlack.
BlFontWeight thin }.
allStreches := {
BlFontStretch normal.
BlFontStretch condensed.
BlFontStretch semiCondensed.
BlFontStretch extraCondensed.
BlFontStretch ultraCondensed.
BlFontStretch expanded.
BlFontStretch semiExpanded.
BlFontStretch extraExpanded.
BlFontStretch ultraExpanded }.
text := '' asRopedText.
aManager familyNames do: [ :fname |
allSlants do: [ :slant |
allWeights do: [ :weight |
allStreches do: [ :strech |
(aManager
detectFamilyName: fname
slant: (AeFontSlant perform: slant name asSymbol)
weight: (AeFontWeight perform: weight name asSymbol)
stretch: (AeFontStretch perform: strech name asSymbol)
ifNone: [ ]) in: [ :face |
face ifNotNil: [
| fontBuilder t |
fontBuilder := BlTextFontAndStyleBuilder new.
fontBuilder familyName: fname.
fontBuilder fontSize: 18.
fontBuilder fontStretch: strech.
fontBuilder fontWeight: weight.
fontBuilder fontSlant: slant.
t := allChars copy asRopedText.
fontBuilder font applyOnText: t.
text := text, (String cr , String cr , String cr , fname , ' slant: ' , slant name , ' weight: ' , weight name
, ' strech: ' , strech name , ' ' , String cr , String cr) asRopedText , t ] ] ] ] ] ].
^ text
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorAsTextAreaWithHighlight [
<demo>
<sampleInstance>
| ed space text |
ed := AlbEditorElement new.
text := ('AB', String tab, String tab, 'CD') asRopedText.
text attribute: (BlTextBackgroundAttribute paint: (Color blue alpha: 0.3)) from: 1 to: 1.
text attribute: (BlTextBackgroundAttribute paint: (Color yellow alpha: 0.5)) from: 3 to: 6.
text attribute: (BlTextBackgroundAttribute paint: (Color yellow alpha: 0.5)) from: 2 to: 2.
text attribute: (BlTextBackgroundAttribute paint: (Color red alpha: 0.3)) from: 3 to: 3.
text
fontSize: 24;
fontName: 'Helvetica Neue'.
ed text: text.
"ed inspect."
space := BlSpace new.
space root addChild: ed.
space title: 'editor'.
space show.
^ ed
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorAsTextAreaWithoutAnyDresser [
| ed space |
ed := AlbEditorElement new.
"ed withLineNumbers."
ed text: (String loremIpsum asRopedText).
space := BlSpace new.
space root addChild: ed.
space title: 'editor'.
"ed inspect."
space show.
^ ed
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorPharoChangesText [
| ed vscrollBar space text |
" ~4300 pages on LibreOffice, ~8000000 characters "
text := Smalltalk changesFile readStream contents asRopedText.
ed := AlbEditorElement new .
ed text: text.
ed withRowNumbers; withoutCacheLimit.
vscrollBar := BlVerticalScrollbarElement new.
vscrollBar constraintsDo: [ :c |
c ignoreByLayout.
c margin: (BlInsets right: 2).
c ignored horizontal alignRight.
c ignored vertical alignBottom].
vscrollBar attachTo: ed infinite.
space := BlSpace new.
space root addChild: ed.
space root addChild: vscrollBar.
space show.
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithAllFonts [
"
AeFontSlant: normal italic oblique.
AeFontWeight: black bold extraBlack extraBold extraLight light medium normal semiBold semiLight thin
AeFontStretch: condensed expanded extraCondensed extraExpanded normal semiCondensed semiExpanded ultraCondensed ultraExpanded
"
| aManager allSlants allWeights allStreches root text child allChars vscrollBar |
allChars := 'azertyuiopqsdfghjklmwxcvbn' , String cr
, 'AZERTYUIOPQSDFGHJKLMWXCVBN' , String cr , '1234567890'
, String cr , '@&é"''(§è!çà)-#°_¨*%£+/.?' , String cr
, '€^$`ù=:;,~|'.
AeFontManager resetGlobalInstance.
aManager := AeFontManager globalInstance.
aManager scanEmbeddedFonts.
aManager scanDefaultDirectories.
allSlants := {
BlFontSlant normal.
BlFontSlant italic.
BlFontSlant oblique }.
allWeights := {
BlFontWeight normal.
BlFontWeight light.
BlFontWeight extraLight.
BlFontWeight medium.
BlFontWeight bold.
BlFontWeight semiBold.
BlFontWeight extraBold.
BlFontWeight black.
BlFontWeight extraBlack.
BlFontWeight thin }.
allStreches := {
BlFontStretch normal.
BlFontStretch condensed.
BlFontStretch semiCondensed.
BlFontStretch extraCondensed.
BlFontStretch ultraCondensed.
BlFontStretch expanded.
BlFontStretch semiExpanded.
BlFontStretch extraExpanded.
BlFontStretch ultraExpanded }.
root := BlElement new constraintsDo: [ :c |
c vertical matchParent.
c horizontal matchParent ].
text := '' asRopedText.
aManager familyNames do: [ :fname |
allSlants do: [ :slant |
allWeights do: [ :weight |
allStreches do: [ :strech |
(aManager
detectFamilyName: fname
slant: (AeFontSlant perform: slant name asSymbol)
weight: (AeFontWeight perform: weight name asSymbol)
stretch: (AeFontStretch perform: strech name asSymbol)
ifNone: [ ]) in: [ :face |
face ifNotNil: [
| fontBuilder t |
fontBuilder := BlTextFontAndStyleBuilder new.
fontBuilder familyName: fname.
fontBuilder fontSize: 18.
fontBuilder fontStretch: strech.
fontBuilder fontWeight: weight.
fontBuilder fontSlant: slant.
t := allChars copy asRopedText.
fontBuilder font applyOnText: t.
text append:
(String cr , String cr , String cr , fname , ' slant: '
, slant name , ' weight: ' , weight name , ' strech: '
, strech name , ' ' , String cr , String cr) asRopedText.
text append: t ] ] ] ] ] ].
child := text onAlbum.
vscrollBar := BlVerticalScrollbarElement new.
vscrollBar constraintsDo: [ :c |
c ignoreByLayout.
c margin: (BlInsets right: 2).
c ignored horizontal alignRight.
c ignored vertical alignBottom ].
vscrollBar attachTo: child infinite.
root addChild: child.
root addChild: vscrollBar.
root openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithBigText [
| ed |
"The insertion bogue arise around 342225"
ed := self bigString asRopedText onAlbum.
"ed constraintsDo: [ :c |
c vertical resizer: BlLayoutResizer fitContent.
c horizontal resizer: BlLayoutResizer fitContent]."
"ed inspect."
ed withRowNumbers.
ed openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithDynamicAttribute [
"
broken in GlamorousToolKit but what to do with that ?
| cache attribute text ed space |
cache := Dictionary new.
attribute := BrTextAdornmentDynamicAttribute new
""beSync;
beAppend;""
withCache: cache key: #key;
stencil: [ {
BlElement new
background: (Color gray alpha: 0.4);
size: 20@100.
BlElement new
background: (Color red alpha: 0.4);
size: 20@10. } ].
text := 'Hello >' asRopedText attribute: attribute.
ed := BrEditor new aptitude: BrGlamorousRegularEditorAptitude new.
ed constraintsDo: [ :c |
c vertical resizer: BlLayoutResizer fitContent.
c horizontal resizer: BlLayoutResizer matchParent].
ed text: text.
""ed inspect.""
space := BlSpace new.
space root addChild: ed.
space title: 'editor'.
space show.
^ text
"
| cache attribute text ed space |
cache := Dictionary new.
attribute := AlbTextAdornmentDynamicAttribute new
"beAppend;"
stencil: [ {
BlElement new
background: (Color gray alpha: 0.4);
extent: 20@100.
BlElement new
background: (Color red alpha: 0.4);
extent: 20@10. } ].
text := 'Hello >' asRopedText attribute: attribute.
ed := AlbEditorElement new "dresser: AlbTextAreaDresser new".
ed constraintsDo: [ :c |
c vertical resizer: BlLayoutResizer fitContent.
c horizontal resizer: BlLayoutResizer matchParent].
ed text: text.
"ed inspect."
space := BlSpace new.
space root addChild: ed.
space title: 'editor'.
space show.
^ text
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithEmbeddedFonts [
"
AeFontSlant: normal italic oblique.
AeFontWeight: black bold extraBlack extraBold extraLight light medium normal semiBold semiLight thin
AeFontStretch: condensed expanded extraCondensed extraExpanded normal semiCondensed semiExpanded ultraCondensed ultraExpanded
"
| root text child |
root := BlElement new constraintsDo: [ :c |
c vertical matchParent.
c horizontal matchParent ].
text := self embeddedFontsText.
child := text onAlbum.
root addChild: child.
root openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithLorem [
| ed space hscrollBar |
ed := AlbEditorElement new.
ed constraintsDo: [ :c |
c vertical resizer: BlLayoutResizer matchParent.
c horizontal resizer: BlLayoutResizer matchParent].
ed text: ((String loremIpsum: 100000) asRopedText "fontName: 'Source Code Pro'").
hscrollBar := BlHorizontalScrollbarElement new.
hscrollBar constraintsDo: [ :c |
c ignoreByLayout.
c margin: (BlInsets bottom: 2).
c ignored vertical alignBottom].
hscrollBar attachTo: ed infinite.
ed inspect.
space := BlSpace new.
space root addChild: ed.
space root addChild: hscrollBar.
space show.
^ed
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithReplacingAdornment [
| aText ed |
aText := ('Hello' , String cr , 'World') asRopedText fontSize: 20.
(aText from: 4 to: 4) replacingAdornment: [
BlElement new
extent: 20 @ 6;
background: Color red ].
ed := aText onAlbum.
ed withRowNumbers.
ed openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithSegNumbers [
| ed t |
"The insertion bogue arise around 342225""100000000 is ~20 000 pages in LibreOffice - 360 000 lines on TextMaker "
t := String streamContents: [ :stream |
1 to: 400000 do: [ :l |
(stream << l asString)
<< ': 1234567890';
lf ] ].
ed := (t asRopedText fontSize: 16) onAlbum.
ed withRowNumbers.
ed openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithSubtextElement [
| ed space text size start |
ed := AlbEditorElement new.
text := (String loremIpsum: 1000) asRopedText.
ed text: text.
size := 10.
start := 10.
10 timesRepeat: [
| deco |
deco := (AlbSubtextElement editorElement: ed)
interval: (start to: start + size);
yourself.
deco background: (Color red alpha: 0.2).
deco addEventHandler: AlbSubtextElementEventHandler new.
deco addEventHandler: (BlEventHandler
on: BlMouseEnterEvent
do: [ :event | deco border: Color red ]).
deco addEventHandler: (BlEventHandler
on: BlMouseLeaveEvent
do: [ :event | deco border: BlBorder empty ]).
ed frontLayer addChild: deco.
start := start + size + 50 ].
space := BlSpace new.
space root addChild: ed.
space title: 'editor'.
space show.
^ ed
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_EditorWithTGCA [
| ed tgca tgcaText colorIndex vscrollBar space |
colorIndex := IdentityDictionary new.
colorIndex at: $T put: (Color red alpha: 0.4).
colorIndex at: $G put: (Color blue alpha: 0.4).
colorIndex at: $C put: (Color green alpha: 0.4).
colorIndex at: $A put: (Color yellow alpha: 0.4).
"The insertion bogue arise around 342225"
tgca := self tgcaString.
tgcaText := '' asRopedText fontSize: 25.
tgca linesDo: [ :l |
| lrt |
lrt := l asRopedText.
l withIndexDo: [ :c :idx |
(colorIndex at: c ifAbsent: [ ]) in: [ :color |
color ifNotNil: [ lrt attribute: (BlTextBackgroundAttribute paint: color) from: idx to: idx ] ] ].
tgcaText append: ((lrt , String cr asRopedText) fontName: 'Source Code Pro'; fontSize: 20)].
ed := tgcaText onAlbum.
ed withRowNumbers.
ed withoutSoftLine.
vscrollBar := BlVerticalScrollbarElement new.
vscrollBar constraintsDo: [ :c |
c ignoreByLayout.
c margin: (BlInsets right: 2).
c ignored horizontal alignRight.
c ignored vertical alignBottom].
vscrollBar attachTo: ed infinite.
space := BlSpace new.
space root addChild: ed.
space root addChild: vscrollBar.
space show.
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_RopedTextWithDifferentFontSize [
(' Default font and size' asRopedText
, (' ( Source code pro 40 bold ) ' asRopedText
fontSize: 40;
fontName: 'Source code pro';
bold) , (' Default font 30' asRopedText fontSize: 30)) onAlbum
withRowNumbers;
openInSpace
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithClickAndHoverAttributes [
| text styler editorElement space clickText hoverText |
self flag: 'Works, but should be revised because the implementaion of these attributes in Album is really crappy'.
clickText := ' <Clik here>'.
hoverText := '<<<Mouse over here >>>'.
text := (clickText , ' ' , hoverText) asRopedText.
editorElement := AlbEditorElement new text: text.
"editorElement editorText
attributes: {
(BlTextBackgroundAttribute new paint: Color lightBlue).
(AlbTextEventHandlerAttribute new when: BlClickEvent do: [ :anEvent | self inform: anEvent asString. anEvent consumed: true ]) }
from: 3
to: 11."
" editorElement editorText
attributes: {
(BlTextBackgroundAttribute new paint: Color yellow).
(AlbTextEventHandlerAttribute new
when: BlMouseEnterEvent do: [ :anEvent | self inform: anEvent asString. anEvent consumed: true ];
when: BlMouseLeaveEvent do: [ :anEvent | self inform: anEvent asString. anEvent consumed: true ]) }
from: 17
to: 30."
space := BlSpace new.
space root addChild: editorElement.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithCrLfOnly [
| ed space |
ed := AlbEditorElement new text: String crlf.
ed editor segmentCollector inspect.
ed withRowNumbers.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithCrOnly [
| ed space |
ed := AlbEditorElement new text: String cr.
ed editor segmentCollector inspect.
ed withRowNumbers.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithCrWithCrLf [
| ed space |
ed := AlbEditorElement new text: 'Before Cr', String cr, 'Before CrLf', String crlf, 'After'.
ed withRowNumbers.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithEmptyText [
| ed space |
ed := AlbEditorElement new.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithEmptyTextFitContents [
| ed space |
self flag: 'does not work'.
ed := AlbEditorElement new.
ed text: 'bla bla'.
"ed constraintsDo: [ :c |
c horizontal fitContent.
c vertical fitContent ]."
ed fitContent.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> example_WithHelloWorld [
| ed space text |
text := 'Hello World' asRopedText fontSize: 40.
ed := AlbEditorElement new.
ed withRowNumbers.
ed text: text.
space := BlSpace new.
space root addChild: ed.
space show
]
{ #category : #'instance creation' }
AlbExamplesSeeClassSide class >> glyphHeight [
^ self ascent abs + self descent
]
{ #category : #'instance creation' }
AlbExamplesSeeClassSide class >> glyphWidth [
^ 30
]
{ #category : #'instance creation' }
AlbExamplesSeeClassSide class >> lineSpacing [
^ 5
]
{ #category : #'instance creation' }
AlbExamplesSeeClassSide class >> paragraphMargin [
^ BlInsets all: 15
]
{ #category : #'editor examples' }
AlbExamplesSeeClassSide class >> tgcaString [
^ 'ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT
ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTT
AACATAGCAGTGGTGTTACCCGTGAACTCATGCGTGAGCTTAACGGAGGGGCATACACTCGCTATGTCGATAACAAC
TTCTGTGGCCCTGATGTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATA
ACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCA
GCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTGACCGAAAGGTAAGATGGAGAGCCTTGTCCCTGGTTTCAAC
GAGAAAACACACGTCCAACTCAGTTTGCCTGTTTTACAGGTTCGCGACGTGCTCGTACGTGGCTTTGGAGACTCCGT
GGAGGAGGTCTTATCAGAGGCACGTCAACATCTTAAAGATGGCACTTGTGGCTTAGTAGAAGTTGAAAAAGGCGTTT'
]
{ #category : #'instance creation' }
AlbExamplesSeeClassSide class >> wordPadding [
^ BlInsets top: 3 bottom: 3
]
{ #category : #'see class side' }
AlbExamplesSeeClassSide >> seeClassSide [
]