Hallo, Gast |
Du musst dich registrieren bevor du auf unserer Seite Beiträge schreiben kannst.
|
Foren-Statistiken |
» Mitglieder: 96
» Neuestes Mitglied: semlak
» Foren-Themen: 286
» Foren-Beiträge: 2.590
Komplettstatistiken
|
Benutzer Online |
Momentan sind 141 Benutzer online » 0 Mitglieder » 140 Gäste Bing
|
Aktive Themen |
https://www.amiblitz.de
Forum: Off Topic
Letzter Beitrag: HelmutH
18.03.2025, 21:20
» Antworten: 5
» Ansichten: 685
|
AmiBlitz 3.10.0 veröffent...
Forum: News
Letzter Beitrag: HelmutH
14.03.2025, 23:27
» Antworten: 0
» Ansichten: 239
|
readserial fail (bug ?)
Forum: Questions & Answers
Letzter Beitrag: hackball
13.03.2025, 18:23
» Antworten: 14
» Ansichten: 1.455
|
ReadSerialMem example (al...
Forum: Questions & Answers
Letzter Beitrag: hackball
06.03.2025, 17:31
» Antworten: 4
» Ansichten: 673
|
Diff View (MUI)
Forum: Showcase
Letzter Beitrag: hackball
02.03.2025, 13:03
» Antworten: 0
» Ansichten: 299
|
Foren Statistik
Forum: Off Topic
Letzter Beitrag: plouf
14.02.2025, 11:48
» Antworten: 10
» Ansichten: 2.348
|
WriteSerialString fails....
Forum: Questions & Answers
Letzter Beitrag: hackball
11.02.2025, 18:34
» Antworten: 11
» Ansichten: 2.410
|
listview in Os1.3
Forum: Questions & Answers
Letzter Beitrag: hackball
09.02.2025, 21:07
» Antworten: 11
» Ansichten: 2.294
|
AmySequencer - MIDI- und ...
Forum: Projects
Letzter Beitrag: HelmutH
06.02.2025, 23:52
» Antworten: 4
» Ansichten: 10.980
|
RedPill - Game Constructi...
Forum: Projects
Letzter Beitrag: HelmutH
06.02.2025, 23:35
» Antworten: 44
» Ansichten: 106.534
|
|
|
Syntax Highlightning in tuiTextBox |
Geschrieben von: Der Wanderer - 01.12.2013, 20:37 - Forum: NTUI
- Antworten (11)
|
 |
Syntax Highlightning (or any other formatting of the text) in NTUI is called "styling".
This is how it works for now (Function names will change slightly in final NTUI), since don't want to expose newtypes.
[ab3]myStyleCallback:
Function.l myStyleCallback{*textBox.tuiTextBox,lpos.l,*tline.tline}
*tline\sclength = 0 ; reset the style information
cpos.l = 0 ; start at character position 0
While cpos<*tline\clength ; go through the whole line
c.b = Peek.b(*tline\text+cpos) : cpos+1 ; grab a character
Select c
Case @"a" ; if we see an "a"...
; make it bold and red
_tb_SetStyleCommand{*tline,cpos-1,#TUITBSC_BOLD,1}
_tb_SetStyleCommand{*tline,cpos-1,#TUITBSC_FGPEN,#TUITBPEN_RED}
; and return to normal
_tb_SetStyleCommand{*tline,cpos,#TUITBSC_BOLD,0}
_tb_SetStyleCommand{*tline,cpos,#TUITBSC_FGPEN,#TUITBPEN_TEXT}
Default
; nothing happens for other characters
End Select
Wend
*tline\flags|#TUITBLF_STYLED ; mark the line as styled
Function Return #TUISCB_DONE ; tell NTUI we are done
End Function
; this creates a global variable "*myStyleCallback" that points to our functions
; and tells AmiBlitz3 not to remove the function, since it is never called directly
!_MakeGlobalFuncPointer{myStyleCallback,{Null,0,Null}}
...
ntui_SetAttr{*textBox,#TUITBA_STYLECB,*myStyleCallback} ; attach the callback function to the textbox
...
ntui_SetAttr{*textBox,#TUITBA_STYLECB,Null} ; remove the callback function from the textbox[/ab3]
There are a few things to mention:
1. The example makes all "a"'s in the text bold and red.
2. You don't have to remove the callback when you free the textBox. This is only necessary if you want to make sure it will never called again, e.g. if your style callback allocated resources that you want to free before NTUI.
3. Between the label "myStyleCallback:" and the function declaration MUST NOT be any code.
4. It is allowed to write to the text buffer (Poke), but the length MUST be preserved. E.g. Casing can be altered. Note that you are actually changing the text buffer. If you just want to just format for display, you need "Style Commands" for this.
5. There are many "Style Commands", not only bold and colors. See TUITBSC_... for more. New commands can be easily added if necessary.
6. To style the text, you don't need a StyleCallback. You can also go through the whole text and style it. However, the style callback has so many advantages that you really want to use it. E.g., you don't need to parse the whole text, only the visible lines (=much faster). It also keeps track while editing the text line.
7. If you parse a line and the result may affect the next or previous line (e.g. multi-line comment), you need to return #TUISCB_NEXT or #TUISCB_PREV instead of #TUISCB_DONE. You can store the parser state as flags in *tline\flags. There are currently two flags, #TUITBLF_INCOMMENT and #TUITBLF_INTAG.
8. If the highlightning is more complex that just tracking a character, I highly recommend using a stack-based parser rather than a state machine.
99% of all programming languages can be parsed by a stack based parser with lookahead of 1 or 2 characters. I can give an example if there is interest.
|
|
|
Erzeugen von Labels (zum wiederfinden) |
Geschrieben von: hackball - 01.12.2013, 01:42 - Forum: Questions & Answers
- Antworten (9)
|
 |
Ich möchte in AB3 Labels erzeugen, die mir ermöglichen, an bestimmte Stellen zu springen. Im Optimalfall würde ich immer das gleiche benutzen, nämlich das Tape .o__o
Da man natürlich nicht mehrmals dasselbe Label verwenden kann, muß ich mein Tape immer etwas abwandeln.
Gibt es für diesen Fall eine elegantere Lösung?
edit
Hm. z.B. eine Direktive "Dummylabel = .o__o" oder so?
|
|
|
Ntui: Engine |
Geschrieben von: Blackbird - 30.11.2013, 16:47 - Forum: NTUI
- Antworten (15)
|
 |
Hallo Thilo,
Wird denn bei der angabe im xml seit neuesten kein iconifygadget mehr im Window erzeugt, oder ging das noch nie ?
In AIDE machst du das ja per Menü...
|
|
|
Wunschliste |
Geschrieben von: bruZard - 26.11.2013, 20:49 - Forum: News
- Antworten (8)
|
 |
Hinter den Kulissen bin ich permanent dabei das Forum und die Site zu verbessern. Auf der ToDo stehen derzeit: - anpassen der Farben für den Syntaxhighlighter an die original AB3 IDE Farben
- anpassen der Code-Farben für Blitz2 Chipset-Befehle
- anpassen des SyntaxHighlighter damit dieser auch Funktionen highlighted die auf {} hören
- anpassen der "Subsilver" Icons an die "AmiBlitz3 CI"
- Einbindung des SAE in die Website, so dass ihr in ferner Zukunft Eure Projekte auch Leuten zeigen könnt die keinen Amiga oder eine Emulation ihr Eigen nennen.
Daneben lösche ich permanent User die sich potentiell zum Spam angemeldet haben.
Dieser Thread soll aber etwas Anderem dienen: Schreibt hier rein was ihr Euch wünscht, für das Forum und Site. Wo kann noch verbessert werden und welche Features fehlen Euch? Ich bin gespannt!
|
|
|
Ntui : Textbox |
Geschrieben von: Blackbird - 22.11.2013, 18:02 - Forum: NTUI
- Antworten (7)
|
 |
Hallo,
Wenn ich einen Text ins Textboxwidget einlese, warum wird das dann nicht automatisch refresht ?
Muß ich das selbst machen ?
|
|
|
|