Alt-Tickit-Widgets-ObjectPad

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

         * Avoid complaints about mouse wheel direction names not being
           numeric in linear Split (RT119857)

0.26    2017/02/15 15:03:58
        [BUGFIXES]
         * ContainerWidget should ->close dropped child windows when it loses
           its own (WINDOW_XS branch)

0.25    2017/02/04 14:54:12
        [CHANGES]
         * Minor edits to unit tests to pass on Tickit post-0.61
           (WINDOW_XS branch)

0.24    2016/08/08 13:43:01
        [CHANGES]
         * Tickit 0.57 deprecations:
            + Use $win->bind_event instead of $win->set_on_*

        [BUGFIXES]
         * Ensure that Tickit::Widget::Box can cope with removing its child or
           window

Changes  view on Meta::CPAN

         * Added Tickit::Widget::Fill

0.18    2014/08/16 21:17:51
        [BUGFIXES]
         * Cope with differing Tickit::Widget::Frame linestyles per border
           when passed at construction time

0.17    2014/08/14 18:12:50
        [CHANGES]
         * Capture Tickit::Widget::HBox and ::VBox from main Tickit dist
         * Added editing methods to Tickit::Widget::GridBox:
            + insert/append/delete row/column
            + get cell/row/column

0.16    2014/04/12 04:10:47
        [CHANGES]
         * Update Tickit::Widget::Entry to avoid direct Window drawing
           operations; use ->expose calls to request re-rendering
         * Prepare for Tickit 0.45's removal of INSERTCH/DELETECH from
           is_termlog() logging

lib/Tickit/Widget/Entry.pm  view on Meta::CPAN


Returns the currently entered text.

=cut

method text { $_text }

=head2 $entry->set_text( $text )

Replace the text in the entry box. This completely redraws the widget's
window. It is largely provided for initialisation; for normal edits (such as
from keybindings), it is preferable to use C<text_insert>, C<text_delete> or
C<text_splice>.

=cut

method set_text
{
   my ( $text ) = @_;

   $_text = $text;



( run in 0.840 second using v1.01-cache-2.11-cpan-de7293f3b23 )