-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.cbs
2277 lines (2111 loc) · 61.3 KB
/
user.cbs
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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//[of]Global functions:Global functions
//[of]:Activesection \:\: Section
function Activesection
return Section (Activeview section)
//[of]:~ test
//[c]~ function test
//[c] ~ print (Activesection Repr)
//[cf]
//[cf]
//[of]:Activelanguage \:\: Language
function Activelanguage
return Activefile language
//[of]:~ test
//[c]~ function test
//[c] ~ print (Activelanguage name)
//[cf]
//[cf]
//[of]:Activeview \:\: TextView
function Activeview
return frame activeView
//[cf]
//[of]:Activefile \:\: TextView
function Activefile
return frame activeFile
//[cf]
//[of]:Indenttoken \:\: String
//[c]Todo: Activelanguage expandTabulation always returns true, even if set to false in the preferences.cbc. How to solve?
function Indenttoken
var lang = Activelanguage name
//[c] Elm enforces two spaces for indenting code
if lang == "Elm"
return " "
else
//[c] Outcomment this if you want to use spaces for indentation.
//[c] Also 'expand-tabulation' has to be set to 'false' in
//[c] preferences.cbc -> 'Languages' -> 'Default' -> 'Tabs'.
return " "
//[c] Outcomment this if you want to use Tabs.
//[c] 'expand-tabulation' has to be set to 'true'.
//[c] ~ return "\t"
end
//[of]:~ test
//[c]~ function test
//[c] ~ printborder (Indenttoken)
//[cf]
//[cf]
//[of]:Selectedtext \:\: String
function Selectedtext
return Activeview selectedText
//[cf]
//[of]:Opencomment \:\: String
function Opencomment
var language = Activelanguage
if language lineComment notEmpty
return language lineComment
else
return language openComment
end
//[cf]
//[of]:Closecomment \:\: String
function Closecomment
var language = Activelanguage
if language lineComment isEmpty
return language closeComment
else
return ""
end
//[cf]
//[of]:Strings
//[c]Most functions return StringBuffers and not Strings. This is for performance reasons - it prevents making string copies (well, i think it does).
//[c]
//[c]If it is an inplace action i do not return the stringbuffer but nil or sometimes a number, indicating eg. how many replacements have been done. For example the strip functions do that. This to make users of the library aware of the fact that it is happening inplace. This is how Python does it.
//[of]:Buf \:\: Buffer
//[c]Lazy shortcut
function Buf
return StringBuffer new
//[cf]
//[of]:tostring \:\: Thing -> String
//[c]Todo: add 'toString' method to all types defined by this script
function tostring (thing)
if thing isNil
return "nil"
else
return thing toString
end
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ var buf = Buf
//[c] ~ buf << tostring($a) << $|
//[c] ~ buf << tostring("Hi") << $|
//[c] ~ buf << tostring(1) << $|
//[c] ~ buf << tostring(true) << $|
//[c] ~ buf << tostring(nil)
//[c] ~ o print(buf)
//[cf]
//[cf]
//[of]:tostringbuffer \:\: Thing -> Buffer
function tostringbuffer (thing)
return Buf << tostring (thing)
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ var ok = " works"
//[c] ~ o print(tostringbuffer($a) << ok)
//[c] ~ o print(tostringbuffer("hi") << ok)
//[c] ~ o print(tostringbuffer(1) << ok)
//[c] ~ o print(tostringbuffer(true) << ok)
//[c] ~ o print(tostringbuffer(nil) << ok)
//[cf]
//[cf]
//[of]:replace \:\: String|Buffer -> String -> String -> Buffer
function replace (string, oldstring, newstring)
var buf = Buf
var stringsize = string size
var oldsize = oldstring size
var stophere = stringsize - oldsize
var relevant = oldstring[0]
var curpos = 0
var curchar = nil
while curpos <= stophere
curchar = string[curpos]
if curchar == relevant
//[of]:maybe replace oldstring with newstring
var endpos = curpos + oldsize
var curpos_ = curpos + 1
var oldpos = 1
var found = true
while curpos_ < endpos
if string[curpos_] <> oldstring[oldpos]
found = false
break
end
curpos_ = curpos_ + 1
oldpos = oldpos + 1
end
if found
curpos = curpos_ - 1
buf << newstring
else
buf << curchar
end
//[cf]
else
buf << curchar
end
curpos = curpos + 1
end
buf << string range(curpos, stringsize - curpos)
return buf
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ var string = "/* foo */"
//[c] ~ o print(string)
//[c] ~ string = replace (string, "/*", "___oc___")
//[c] ~ o print(string)
//[c] ~ string = replace (string, "*/", "___cc___")
//[c] ~ o print(string)
//[c] ~ string = replace (string, "___oc___", "/*")
//[c] ~ o print(string)
//[c] ~ string = replace (string, "___cc___", "*/")
//[c] ~ o print(string)
//[cf]
//[cf]
//[of]times \:\: Number -> String -> StringBuffer:times \:\: Number -> String -> Buffer
function times (num, string)
var buf = Buf
var curpos = 0
while curpos < num
buf << string
curpos = curpos + 1
end
return buf
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ o print(times(3, "hi "))
//[c] ~ o printborder(times(0, "hi "))
//[cf]
//[cf]
//[of]:wrap \:\: String or Buffer -> Thing -> String or Buffer -> Buffer
function wrap (leftchars, thing, rightchars)
return Buf << leftchars << tostring (thing) << rightchars
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ o print(wrap("(", "hi", ")"))
//[c] ~ o print(wrap("foo ", "bar", " baz"))
//[cf]
//[cf]
//[of]:Stripping
//[of]:lstripstring \:\: Buffer -> String -> Integer
function lstripstring (buf, string)
var stringsize = string size
var howoften = 0
while buf startsWith (string)
buf removeRange (0, stringsize)
howoften = howoften + 1
end
return howoften
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "... ... ... indented"
//[c] ~ lstripstring (x, "... ")
//[c] ~ p(x)
//[cf]
//[cf]
//[of]:rstripstring \:\: Buffer -> String -> Integer
function rstripstring (buf, string)
var stringsize = string size
var howoften = 0
while buf endsWith (string)
rcrop (buf, stringsize)
howoften = howoften + 1
end
return howoften
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "foo bar bar baz baz"
//[c] ~ rstripstring (x, " baz")
//[c] ~ rstripstring (x, " bar")
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:lstripchar \:\: Buffer -> Buffer -> Integer
function lstripchar (buf, char)
var bufsize = buf size
if bufsize == 0
return 0
end
var pos = 0
while true
if (pos == bufsize) or (buf[pos] <> char)
break
end
pos = pos + 1
end
if pos > 0
buf removeRange (0, pos)
end
return pos
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "aaabbbccc"
//[c] ~ lstripchar (x, $a)
//[c] ~ lstripchar (x, $b)
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:rstripchar \:\: Buffer -> Buffer -> Integer
function rstripchar (buf, char)
var bufsize = buf size
if bufsize == 0
return 0
end
var pos = bufsize
while true
pos = pos - 1
if (pos < 0) or (buf[pos] <> char)
pos = pos + 1
break
end
end
var stripamount = bufsize - pos
if stripamount > 0
buf removeRange (pos, stripamount)
end
return stripamount
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "aaabbbccc"
//[c] ~ rstripchar (x, $c)
//[c] ~ rstripchar (x, $b)
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:lstripchars \:\: String -> Buffer -> Integer
function lstripchars (buf, chars)
var bufsize = buf size
var howoften = 0
while true
chars each do char
howoften = howoften + lstripchar (buf, char)
end
if buf size == bufsize
return howoften
end
bufsize = buf size
end
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "aabbabaaaabaabbbbaac"
//[c] ~ lstripchars (x, "ab")
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:rstripchars \:\: String -> Buffer -> Integer
function rstripchars (buf, chars)
var bufsize = buf size
var howoften = 0
while true
chars each do char
howoften = howoften + rstripchar (buf, char)
end
if buf size == bufsize
return howoften
end
bufsize = buf size
end
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "abbccbbbcbbccccbcbcbc"
//[c] ~ rstripchars (x, "bc")
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:lstrip \:\: Buffer -> Integer
function lstrip (buf)
return lstripchars (buf, "\a\b\f\n\r\t\v\w ")
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "\t \t indented"
//[c] ~ lstrip (x)
//[c] ~ Output clear printborder (x)
//[cf]
//[cf]
//[of]:rstrip \:\: Buffer -> Integer
function rstrip (buf)
return rstripchars (buf, "\a\b\f\n\r\t\v\w ")
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "foo bar \t\t"
//[c] ~ rstrip (x)
//[c] ~ Output clear printborder (x)
//[cf]
//[cf]
//[of]:strip \:\: Buffer -> Integer
function strip (buf)
return lstrip (buf) + rstrip (buf)
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "\t \t \t foo bar \t\t"
//[c] ~ strip (x)
//[c] ~ Output clear printborder (x)
//[cf]
//[cf]
//[cf]
//[of]:Cropping
//[c]Used by the strip functions
//[c]( crop amount chars
//[of]:lcrop \:\: Buffer -> Integer -> nil
function lcrop (buf, amount)
buf removeRange (0, amount)
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "0123456789"
//[c] ~ lcrop (x, 3)
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:rcrop \:\: Buffer -> Integer -> nil
function rcrop (buf, amount)
buf removeRange (buf size - amount, amount)
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "0123456789"
//[c] ~ rcrop (x, 3)
//[c] ~ p (x)
//[cf]
//[cf]
//[c])
//[c]( crop at position
//[of]:lcropat \:\: Buffer -> Integer -> nil
//[c]This actually behaves like lcrop. Keeping it for consistency with rcropat
function lcropat (buf, pos)
buf removeRange (0, pos)
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "0123456789"
//[c] ~ lcropat (x, 3)
//[c] ~ p (x)
//[cf]
//[cf]
//[of]:rcropat \:\: Buffer -> Integer -> nil
function rcropat (buf, pos)
buf removeRange (pos, buf size - pos)
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "0123456789"
//[c] ~ rcropat (x, 7)
//[c] same as rcrop (x, 3)
//[c] ~ p (x)
//[cf]
//[cf]
//[c])
//[cf]
//[of]:Indenting lines
//[of]:indentnorm \:\: Buffer -> Integer -> nil
function indentnorm (buf, indentsize)
rstrip (buf)
if not buf isEmpty
var indented = Buf << times (indentsize, Indenttoken) << buf
buf removeAll
buf << indented
end
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "hello world \t"
//[c] ~ indentnorm (x, 3)
//[c] ~ Output clear printborder (x)
//[cf]
//[cf]
//[of]:dedentnorm \:\: Buffer -> Integer -> nil
//[c]Todo: this also crops non empty chars from the left side of the stringbuffer if it has less indent than indentsize suggests.
function dedentnorm (buf, indentsize)
rstrip (buf)
if not buf isEmpty
var amount = indentsize * Indenttoken size
lcrop (buf, amount)
end
//[of]:~ test
//[c]~ function test
//[c] ~ var x = Buf << "\t\t\thello world \t"
//[c] ~ dedentnorm (x, 3)
//[c] ~ Output clear printborder (x)
//[cf]
//[cf]
//[cf]
//[cf]
//[of]:Textblocks
//[of]:totexblock \:\: Thing -> TextBlock
function totextblock (thing)
return TextBlock fromString (tostring (thing))
//[cf]
//[of]:indentblock \:\: TextBlock -> Integer -> nil
function indentblock (block, indentsize)
block each do y
var string = Buf << block rowText (y)
indentnorm (string, indentsize)
block setRowText (y, string toString)
end
var lasttext = Buf << block lastText
indentnorm (lasttext, indentsize)
block setLastText (lasttext toString)
//[of]:~ test
//[c]~ function test
//[c] ~ var sec = Activesection
//[c] ~ var block = sec copy
//[c] ~ indentblock (block, 1)
//[c] ~ sec paste (block)
//[cf]
//[cf]
//[of]:dedentblock \:\: TextBlock -> Integer -> nil
function dedentblock (block, indentsize)
block each do y
var string = Buf << block rowText (y)
dedentnorm (string, indentsize)
block setRowText (y, string toString)
end
var lasttext = Buf << block lastText
dedentnorm (lasttext, indentsize)
block setLastText (lasttext toString)
//[of]:~ test
//[c]~ function test
//[c] ~ var sec = Activesection
//[c] ~ var block = sec copy
//[c] ~ dedentblock (block, 1)
//[c] ~ sec paste (block)
//[cf]
//[cf]
//[of]:normend \:\: TextBlock -> nil
//[c]Adds a newline if the last line contains non whitespace chars
function normend (block)
var lasttext = Buf << block lastText
rstrip (lasttext)
if lasttext notEmpty
block addText (lasttext toString)
end
block setLastText ("")
//[of]:~ test
//[c]~ function test
//[c] ~ var sec = Activesection
//[c] ~ var block = sec copy
//[c] ~ normend (block)
//[c] ~ sec paste (block)
//[cf]
//[cf]
//[cf]
//[of]:Printing
//[c]Lazy development shortcuts for printing stuff to the output buffer. This is slow, because eg. for every 'print' call a Section and a Output class will be created. Further, the section will always be normalized - a newline may be appended. The fast way is to do it like this:
//[c]
//[c] var o = Output
//[c] o clear
//[c] o print("foo")
//[c] o print("foo") clear print("bar") printborder("baz")
//[c] ...
//[c]
//[c]... which only creates the Section and Output wrapper classes once.
//[of]:clear \:\: nil
function clear
Output clear
//[cf]
//[of]:print \:\: nil
function print (thing)
Output print (thing)
//[cf]
//[of]:clearprint \:\: nil
function clearprint (thing)
Output clear print (thing)
//[cf]
//[of]:printborder \:\: nil
function printborder (thing)
Output printborder (thing)
//[cf]
//[cf]
//[of]:startundo \:\: nil
function startundo
Activeview section startGroup
//[cf]
//[of]:stopundo \:\: nil
function stopundo
Activeview section stopGroup
//[cf]
//[of]:smallest \:\: Number -> Number -> Number
function smallest (num, othernum)
if num < othernum
return num
end
return othernum
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ o print (smallest(0, 10))
//[c] ~ o print (smallest (11, 10))
//[c] ~ o print (smallest (10, 10))
//[cf]
//[cf]
//[of]:biggest \:\: Number -> Number -> Number
function biggest (num, othernum)
if num > othernum
return num
end
return othernum
//[of]:~ test
//[c]~ function test
//[c] ~ var o = Output clear
//[c] ~ o print (biggest(0, 10))
//[c] ~ o print (biggest (11, 10))
//[c] ~ o print (biggest (10, 10))
//[cf]
//[cf]
//[of]:somethingselected \:\: Boolean
function somethingselected
return not Activeview isSelectionEmpty
//[cf]
//[cf]
//[of]Types:Types
//[c]( Wrappers for predefined Code Browser types
//[of]Section:Section
//[c]Wraps a TextSection. This also serves as a God Object for global variables, as it is instantiated in every script anyway (the Code Browser script language does not allow global variables).
function Section (textsection)
return TextSectionWrapper basicNew init (textsection)
class TextSectionWrapper
attr Textsection
//[of]init \:\: TextSection -> Section:init \:\: TextSection -> Section
method init (textsection)
self Textsection = textsection
return self normend
//[cf]
//[of]:Title \:\: Buffer
attr _Title
method Title
var t = self _Title
if t isNil
var textsec = self Textsection
var par = textsec parent
t = Buf
if par isNil
t << "<root section>"
else
t << (par row (textsec line) text)
strip (t)
end
self _Title = t
end
return t
//[cf]
//[of]:Uid \:\: Buffer
//[c]Todo: Make Uid be a date loaded from an external prog, so that i can implement a `fix links` function`.
attr _Uid
method Uid
var u = self _Uid
if u isNil
u = Buf << (self Textsection id)
strip (u)
self _Uid = u
end
return u
//[cf]
//[of]:Repr \:\: Buffer
attr _Repr
method Repr
var r = self _Repr
if r isNil
r = Buf
r << "Section ( "
r << "title=\"" << self Title << "\" "
r << "id=\"" << self Uid << "\""
r << " )"
self _Repr = r
end
return r
//[cf]
//[of]:Range \:\: Range
attr _Range
method Range
var r = self _Range
if r isNil
r = Rowrange (self, 0, self Endy)
self _Range = r
end
return r
//[cf]
//[of]:Selection \:\: Range
method Selection
var view = Activeview
var startloc = Location (self, view markLine, view markColumn)
var endloc = Location (self, view cursorLine, view cursorColumn)
return Range (startloc, endloc)
//[cf]
//[of]:Cursorline \:\: Line
method Cursorline
return Line (self, Activeview cursorLine)
//[cf]
//[of]:Lastline \:\: Line
method Lastline
return self lineat (self Endy)
//[cf]
//[of]:Cursorlocation \:\: Location
method Cursorlocation
var view = Activeview
return Location (self, view cursorLine, view cursorColumn)
//[cf]
//[of]:Startlocation \:\: Location
method Startlocation
return Location (self, 0, 0)
//[cf]
//[of]:Endlocation \:\: Location
attr _Endlocation
method Endlocation
var loc = self _Endlocation
if loc isNil
var y = self Endy
loc = Location (self, y, self Textsection row (y) size)
self _Endlocation = loc
end
return loc
//[cf]
//[of]:Selectionstart \:\: Location
method Selectionstart
var view = Activeview
return Location (self, view markLine, view markColumn)
//[cf]
//[of]:Endy \:\: Integer
attr _Endy
method Endy
var y = self _Endy
if y isNil
y = self Textsection rowsSize - 1
self _Endy = y
end
return y
//[cf]
//[of]:Opencomment \:\: String
attr _Opencomment
method Opencomment
var p = self _Opencomment
if p isNil
var language = Activelanguage
if language lineComment notEmpty
p = language lineComment
else
p = language openComment
end
self _Opencomment = p
end
return p
//[cf]
//[of]:Closecomment \:\: String
attr _Closecomment
method Closecomment
var s = self _Closecomment
if s isNil
var language = Activelanguage
if language lineComment isEmpty
s = language closeComment
else
s = ""
end
self _Closecomment = s
end
return s
//[cf]
//[of]:Find \:\: Find
method Find
return Find (self)
//[cf]
//[of]:Output \:\: Output
attr _Output
method Output
var o = self _Output
if o isNil
o = Output
self _Output = o
end
return o
//[cf]
//[of]:normend \:\: Section
method normend
var last= self Lastline
if not (last istext and last isempty)
self appendnewline
end
return self
//[cf]
//[of]:refresh \:\: Section
method refresh
return self refreshdimensions refreshdata
//[cf]
//[of]:refreshdata \:\: Section
method refreshdata
self _Uid = nil
self _Title = nil
self _Repr = nil
return self
//[cf]
//[of]:refreshdimensions \:\: Section
method refreshdimensions
self _Endy = nil
self _Endlocation = nil
return self
//[cf]
//[of]:show \:\: Section
method show
frame activeWindow showSection (self Textsection)
return self
//[cf]
//[of]:clear \:\: Section
method clear
self Textsection replaceAll (TextBlock new)
return self refreshdimensions
//[cf]
//[of]:cut \:\: TextBlock
method cut
return self Range cut
//[cf]
//[of]:copy \:\: TextBlock
method copy
return self Range copy
//[cf]
//[of]:paste \:\: TextBlock
method paste (textblock)
self Range paste (textblock)
return self
//[cf]
//[of]:prepend \:\: TextBlock -> Section
method prepend (textblock)
self Startlocation paste (textblock)
return self
//[cf]
//[of]:append \:\: TextBlock -> Section
method append (textblock)
self Endlocation paste (textblock)
return self
//[cf]
//[of]:appendnewline \:\: Section
method appendnewline
self Endlocation paste (TextBlock fromString ("\n"))
return self
//[cf]
//[of]:prependcomment \:\: TextBlock -> Section
method prependcomment (buf)
var block = TextBlock new
block addComment (buf toString)
self prepend (block)
return self
//[cf]
//[of]:appendcomment \:\: TextBlock -> Section
method appendcomment (buf)
var block = TextBlock new
block addComment (buf toString)
self append (block)
return self
//[cf]
//[of]:levelat \:\: Number -> Level
method levelat (y)
return Level (self, y)
//[cf]
//[of]:paragraphat \:\: Number -> Paragraph
method paragraphat (y)
return Paragraph ( self levelat (y), y )
//[cf]
//[of]:lineat \:\: Number -> Line
method lineat (y)
return Line (self, y)
//[cf]
//[of]:outcomment \:\: Section
method outcomment
self Range outcomment
return self
//[cf]
//[of]:unoutcomment \:\: Section
method unoutcomment
self Range unoutcomment
return self
//[cf]
//[cf]
//[of]:Output
//[c]Wraps the root section of the output buffer = application outputFile root
function Output
return OutputSectionWrapper basicNew init
class OutputSectionWrapper
attr File
attr Section
//[of]:init \:\: Output
method init
var file = application outputFile
self File = file
self Section = Section (file root)
return self
//[cf]
//[of]:show \:\: Output
method show
frame showOutput
return self
//[cf]
//[of]:clear \:\: Output
method clear
self Section clear
self File synchronize
return self
//[cf]
//[of]:_print \:\: Buffer -> Output
method _print (stringbuffer)
self Section append (totextblock (stringbuffer))
self show
self File synchronize
return self
//[cf]
//[of]:prnt \:\: Thing -> Output
method prnt (thing)
return self _print ( tostringbuffer (thing) )
//[cf]
//[of]:print \:\: Thing -> Output
method print (thing)
return self _print ( tostringbuffer (thing) << "\n" )
//[cf]
//[of]:printborder \:\: Thing -> Output
//[c]Useful for printing whitespace
method printborder (thing)
self Section append (totextblock (wrap ("|", thing, "|\n")))
self show
self File synchronize
return self
//[cf]
//[cf]
//[of]:Find
//[c]Wraps FindData
function Find (sec)
return FindDataWrapper basicNew init (sec)
class FindDataWrapper
attr Section
attr Scope
attr Regex
attr Direction
attr Case
attr Whole
attr From
//[of]:init \:\: Section -> Findresult
method init (sec)
self Section = sec
self Scope = find_in_file
self Regex = false
self Direction = find_next
self Case = true
self Whole = false
self From = nil
return self
//[cf]
//[of]:_find \:\: String -> Findresult
method _find (searchstring)
var finddata = FindData new
finddata setScope (self Scope)
finddata setRegularExpression (self Regex)
finddata setDirection (self Direction)
finddata setCaseSensitive (self Case)
finddata setMatchWholeWord (self Whole)
finddata setSearchString (searchstring)
if self From isNil
self From = self Section Cursorlocation
end
var loc = self From
var result = nil
if self Direction == find_next
//[c] Todo: jump over the variable at the cursor
else
result = finddata find (self Section Textsection, loc Y, loc X, true)
end
if result isNil
return nil