Hello,

For the dialogues in Tk::Wizard, I'd want to replace the r/o textbox with e.g. a Tk::TextHighlight for which I can write my own syntax rules. I am not sure though if this can be sub-classed or requires going back to basic TK widgets. Just writing

use Tk::Wizard; use Tk::TextHighlight; my $wiz = new Tk::Wizard; $wiz->addPage ( sub { my $aa = q/return $self->parserError($txt); #for debugging/; $wiz->_text_frame( { -title => 'hmm', -boxedtext => \$aa, -syntax => 'Perl' } )->pack(-expand => 1, -fill => "both"); } );
surely doesn't work..

Update: two small changes in Tk/Wizard.pm i.e. require Tk::TextHighlight; and in sub _text_frame

my $t = $frame->Scrolled("TextHighlight" ... syntax => ( $args->{ -syn +tax } || 'Perl' )
and I have syntax coloring! Can't edit though, and not sure if this breaks something else. Same happens with Tx::CodeText


In reply to editable text + syntax for addTextFramePage by rgcosma

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.