CodeText(3pm) | User Contributed Perl Documentation | CodeText(3pm) |
Tk::CodeText - a TextUndo widget with syntax highlighting capabilities
use Tk; require Tk::CodeText; my $m = new MainWindow; my $e = $m->Scrolled('CodeText', -disablemenu => 1, -syntax => 'Perl', -scrollbars => 'se', )->pack(-expand => 1, -fill => 'both'); $m->configure(-menu => $e->menu); $m->MainLoop;
Tk::CodeText inherits Tk::TextUndo and all its options and methods. Besides syntax highlighting, methods are provided for commenting and uncommenting as well as indenting and unindenting a selected area, matching pairs of braces, brackets and brackets and curlies and automatic indenting of new lines.
Syntax highlighting is done through a plugin approach. Adding languages is a matter of writing plugin modules. Theoretically this is not limited to programming languages. The plugin approach could also provide the possibility for grammar or spell checking in spoken languages.
Currently there is support for Bash, HTML, Perl, Pod, and Xresources.
'[]{}()'
if you don't want matching to be available, simply set it to ''.
[-background => 'red', -foreground => 'yellow']
You can also specify this option as a space separated string. Might come in handy for your Xresource files.
"-background red -foreground yellow"
[ ['Tagname1', @options1], ['Tagname2', @options2], ]
The names of the tags are depending on the syntax that is highlighted. See the language modules for more information about this data structure.
Alternatively it is possible to specify a reference to your independent plugin.
There are some undocumented options. They are used internally. It is propably best to leave them alone.
$text->cget('-rulesdir') . '/' . $text->cget('-syntax') . '.rules'
exists, and if so attempts to load this as a set of rules.
$text->cget('-rulesdir') . '/' . $text->cget('-syntax') . '.rules'
This section is a brief description of how the syntax highlighting process works.
Initiating plugin
The highlighting plugin is only then initiated when it is needed. When some highlighting needs to be done, the widget calls highlightPlug to retrieve a reference to the plugin.
highlightPlug checks wether a plugin is present. Next it will check whether the -rules option has been specified or wether the -rules option has changed. If no rules are specified in -rules, it will look for a pathname in the -rulesdir option. If that is found it will try to load a file called '*.rules', where * is the value of -syntax.
If no plugin is present, or the -syntax option has changed value, highlightPlug loads the plugin. and constructs optionally giving it a reference to the found rules as parameter. if no rules are specified, the plugin will use its internal hardcoded defaults.
Changing the rules
A set of rules is a list, containing lists of tagnames, followed by options. If you want to see what they look like, you can have a look at the constructors of each plugin module. Every plugin has a fixed set of tagnames it can handle.
There are two ways to change the rules.
You can invoke the rulesEdit method, which is also available through the View menu. The result is a popup in which you can specify color and font options for each tagname. After pressing 'Ok', the edited rules will be applied. If -rulesdir is specified, the rules will be saved on disk as rulesdir/syntax.rules.
You can also use configure to specify a new set of rules. In this you have ofcause more freedom to use all available tag options. For more details about those there is a nice section about tag options in the Tk::Text documentation. After the call to configure it is wise to call highlightPlug.
Highlighting text
Syntax highlighting is done in a lazy manor. Only that piece of text is highlighted that is needed to present the user a pretty picture. This is done to minimize use of system resources. Highlighting is running on the foreground. Jumping directly to the end of a long fresh loaded textfile may very well take a couple of seconds.
Highlighting is done on a line to line basis. At the end of each line the highlighting status is saved in the list in -colorinf, so when highlighting the next line, the highlight method of CodeText will know how to begin.
The line that needs highlighting is offered to the highlight method of the plugin. This method returns a list of offset and tagname pairs. Take for example the following line of perl code.
my $mother = 'older than i am';
The highlight method of the Perl plugin will return the following list;
(2 => 'Reserved', #'my' is a reserved word 1 => 'DEFAULT', #Space 7 => 'Variable', #$mother 1 => 'DEFAULT', #Space 1 => 'Operator', #'=' 1 => 'DEFAULT', #Space 17 => 'String', #'older than i am' 1 => 'DEFAULT',) #;
The highlight method of CodeText will then mark positions 0 to 2 as 'Reserved', positions 2 to 3 as 'DEFAULT', positions 3 to 10 as 'Variable', etcetera.
After writing a couple of plugins myself i have come to a couple of guidelines about how to set them up. If you are interested in adding support for your own syntax highlighting problem or language this section is of interest to you.
From scratch
If you choose to build a plugin completely from scratch, your module needs to meet the following requirements.
- If you want to write a formal addition to Tk::CodeText, your plugin must be in the namespace Tk::CodeText::YourSyntax. - The constructor is called 'new', and it should accept a reference a reference to a list of rules as parameters. - The following methods will be called upon by Tk::CodeText: highlight, stateCompare, rules, setSate, getState, syntax.
More information about those methods is available in the documentation of Tk::CodeText::None and Tk::CodeText::Template. Good luck, you're on your own now.
Inheriting Tk::CodeText::Template
For many highlighting problems Tk::CodeText::Template provides a nice basis to start from. Your code could look like this:
package Tk::CodeText::MySyntax; use strict; use base('Tk::CodeText::Template'); sub new { my ($proto, $wdg, $rules) = @_; my $class = ref($proto) || $proto;
Next, specify the set of hardcoded rules.
if (not defined($rules)) { $rules = [ ['Tagname1', -foreground => 'red'], ['Tagname1', -foreground => 'red'], ]; };
Call the constructor of Tk::CodeText::Template and bless your object.
my $self = $class->SUPER::new($rules);
So now we have the SUPER class avalable and we can start defining a couple of things.
You could add a couple of lists, usefull for keywords etc.
$self->lists({ 'Keywords' => ['foo', 'bar'], 'Operators' => ['and', 'or'], });
For every tag you have to define a corresponding callback like this.
$self->callbacks({ 'Tagname1' => \&Callback1, 'Tagname2' => \&Callback2, });
You have to define a default tagname like this:
$self->stackPush('Tagname1');
Perhaps do a couple of other things but in the end, wrap up the new method.
bless ($self, $class); return $self; }
Then you need define the callbacks that are mentioned in the callbacks hash. When you just start writing your plugin i suggest you make them look like this:
sub callback1 { my ($self $txt) = @_; return $self->parserError($txt); #for debugging your later additions }
Later you add matching statements inside these callback methods. For instance, if you want callback1 to parse spaces it is going to look like this:
sub callback1 { my ($self $txt) = @_; if ($text =~ s/^(\s+)//) { #spaces $self->snippetParse($1, 'Tagname1'); #the tagname here is optional return $text; } return $self->parserError($txt); #for debugging your later additions }
If callback1 is the callback that is called by default, you have to add the mechanism for checking lists to it. Hnce, the code will look like this:
sub callback1 { my ($self $txt) = @_; if ($text =~ s/^(\s+)//) { #spaces $self->snippetParse($1, 'Tagname1'); #the tagname here is optional return $text; } if ($text =~ s/^([^$separators]+)//) { #fetching a bare part if ($self->tokenTest($1, 'Reserved')) { $self->snippetParse($1, 'Reserved'); } elsif ($self->tokenTest($1, 'Keyword')) { $self->snippetParse($1, 'Keyword'); } else { #unrecognized text $self->snippetParse($1); } return $text } return $self->parserError($txt); #for debugging your later additions }
Have a look at the code of Tk::CodeText::Bash. Things should clear up. And then, last but not least, you need a syntax method.
Using another module as basis
An example of this approach is the Perl syntax module.
Also with this approach you will have to meet the minimum criteria as set out in the From scratch section.
If you have written a plugin, i will be happy to include it in the next release of Tk::CodeText. If you send it to me, please have it accompanied with the sample of code that you used for testing.
Unknown. If you find any, please contact the author.
2023-01-03 | perl v5.36.0 |