Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > Tk read-only text box

Reply
Thread Tools

Tk read-only text box

 
 
nornagon
Guest
Posts: n/a
 
      05-23-2005
Another Tk question.

Perl/Tk has a widget called Tk::ROText, which acts just like a text
box, with the exception that the user cannot enter text into it.

I need something with the same functionality; I would like the user to
be able to select the text and scroll through it, but not edit it.
Also, I need to be able to change its contents dynamically.

Thanks,
--=20
- nornagon


 
Reply With Quote
 
 
 
 
Hidetoshi NAGAI
Guest
Posts: n/a
 
      05-24-2005
From: nornagon <>
Subject: Tk read-only text box
Date: Tue, 24 May 2005 06:56:06 +0900
Message-ID: <>
> I need something with the same functionality; I would like the user to
> be able to select the text and scroll through it, but not edit it.
> Also, I need to be able to change its contents dynamically.


Hmmm.... Probably there are some ways.
One of the ways is "block Key events".
To do that, please use Tk.callback_break.
For example,
---------------------------------------------------
require 'tk'
t = TkText.new.pack
t.bindtags_unshift(b = TkBindTag.new)
b.bind('Key', proc{ Tk.callback_break })

t.insert(:end, "This is a test message.\n");

Tk.after(10000){t.insert(:end, "This is another test message.\n")}

Tk.mainloop
---------------------------------------------------
--
Hidetoshi NAGAI ()


 
Reply With Quote
 
 
 
 
nornagon
Guest
Posts: n/a
 
      05-24-2005
On 5/24/05, Hidetoshi NAGAI <> wrote:
> From: nornagon <>
> Subject: Tk read-only text box
> Date: Tue, 24 May 2005 06:56:06 +0900
> Message-ID: <>
> > I need something with the same functionality; I would like the user to
> > be able to select the text and scroll through it, but not edit it.
> > Also, I need to be able to change its contents dynamically.

>=20
> Hmmm.... Probably there are some ways.
> One of the ways is "block Key events".
> To do that, please use Tk.callback_break.
> For example,
> ---------------------------------------------------
> require 'tk'
> t =3D TkText.new.pack
> t.bindtags_unshift(b =3D TkBindTag.new)
> b.bind('Key', proc{ Tk.callback_break })
>=20
> t.insert(:end, "This is a test message.\n");
>=20
> Tk.after(10000){t.insert(:end, "This is another test message.\n")}
>=20
> Tk.mainloop
> ---------------------------------------------------


Interesting. Could you tell me how that works, exactly? Like, what's
bindtags_unshift do? What's a BindTag, even?

Thanks a lot for your patience. ^_^

--=20
- nornagon


 
Reply With Quote
 
Hidetoshi NAGAI
Guest
Posts: n/a
 
      05-24-2005
From: nornagon <>
Subject: Re: Tk read-only text box
Date: Tue, 24 May 2005 15:40:25 +0900
Message-ID: <>
> > For example,
> > ---------------------------------------------------
> > require 'tk'
> > t = TkText.new.pack
> > t.bindtags_unshift(b = TkBindTag.new)
> > b.bind('Key', proc{ Tk.callback_break })
> >
> > t.insert(:end, "This is a test message.\n");
> >
> > Tk.after(10000){t.insert(:end, "This is another test message.\n")}
> >
> > Tk.mainloop
> > ---------------------------------------------------

>
> Interesting. Could you tell me how that works, exactly? Like, what's
> bindtags_unshift do? What's a BindTag, even?


Each widget has a bindtag list to determine bindings which should be
appleid. The default value of the list is [<self>, <class of the
widget>, <toplevel which the widget is placed on>, 'all'].
When an event occurs on the widget, one or none of the procedures
binded to each bindtag is called. Of course, the event sequence of
the binding has to matche the event. Usually, the calling process is
done in order of the bindtag list. Tk.callback_break can break the
sequence and complete the operation for the event.

You can get/set the bindtag list by bindtags/bindtags= method. And can
add a new bindtag to the head of the list by bindtags_unshift method
(remove the head by bindtags_shift method).

If you remove <class of the widget> from a bindtag list of a widget,
the widget lose all bindings of the widget class. If add <class of the
widget> again, the widget gets the bindings of the widget class again.

Well, in the example case, a new bindtag is inserted at head of the
bindtag list of the text widget. The bindtag has a binding for all
"Key" events. And the binding is "Tk.callback_break", that is, "finish
the operation for the event".

The operataion "insert a key-pressed character" is one of the bindings
for a kind of "Key" event. And it is binded on <class of the widget>,
that is, "TkText".

However, on the example, all kind of "Key" events are blocked on the
new bindtag and aren't checked on "TkText" tag. So, keyboard events
cannot change the text widget.

# The reason of why don't remove "TkText" tag is to be able to accept
# mouse events.
--
Hidetoshi NAGAI ()


 
Reply With Quote
 
nornagon
Guest
Posts: n/a
 
      05-25-2005
On 5/24/05, Hidetoshi NAGAI <> wrote:
> From: nornagon <>
> Subject: Tk read-only text box
> Date: Tue, 24 May 2005 06:56:06 +0900
> Message-ID: <>
> > I need something with the same functionality; I would like the user to
> > be able to select the text and scroll through it, but not edit it.
> > Also, I need to be able to change its contents dynamically.

>=20
> Hmmm.... Probably there are some ways.
> One of the ways is "block Key events".
> To do that, please use Tk.callback_break.
> For example,
> ---------------------------------------------------
> require 'tk'
> t =3D TkText.new.pack
> t.bindtags_unshift(b =3D TkBindTag.new)
> b.bind('Key', proc{ Tk.callback_break })
>=20
> t.insert(:end, "This is a test message.\n");
>=20
> Tk.after(10000){t.insert(:end, "This is another test message.\n")}
>=20
> Tk.mainloop
> ---------------------------------------------------


Hmm. I've been using this for a while and it works quite nicely.
However, I've noticed that it prevents you from copying from the text
box using Ctrl+C. Is there a way to fix this?

--=20
- nornagon


 
Reply With Quote
 
Hidetoshi NAGAI
Guest
Posts: n/a
 
      05-25-2005
From: nornagon <>
Subject: Re: Tk read-only text box
Date: Wed, 25 May 2005 21:37:04 +0900
Message-ID: <>
> Hmm. I've been using this for a while and it works quite nicely.
> However, I've noticed that it prevents you from copying from the text
> box using Ctrl+C. Is there a way to fix this?


Here is an example.
----------------------------------------------------------------
require 'tk'
t = TkText.new.pack
t.bindtags_unshift(b = TkBindTag.new)
b.bind('Key', proc{ Tk.callback_break })
b.bind('Control-KeyPress-w',
proc{ Tk.callback_continue }) # continue to the next bindtag
b.bind('Control-KeyPress-y', proc{})
b.bind('Control-KeyPress-c', proc{t.insert(:end, "Press Ctrl-C !!\n")})
b.bind('Control-Alt-KeyPress-c', proc{exit})

t.insert(:end, "This is a test message.\n");

Tk.after(10000){t.insert(:end, "This is another test message.\n")}

Tk.mainloop
----------------------------------------------------------------
For one event, only one binding is called on each bindtag.
That is most detailed one which matched to the event.
--
Hidetoshi NAGAI ()


 
Reply With Quote
 
Hidetoshi NAGAI
Guest
Posts: n/a
 
      05-25-2005
From: Hidetoshi NAGAI <>
Subject: Re: Tk read-only text box
Date: Wed, 25 May 2005 23:21:52 +0900
Message-ID: < >
> Here is an example.
> ----------------------------------------------------------------
> require 'tk'
> t = TkText.new.pack
> t.bindtags_unshift(b = TkBindTag.new)
> b.bind('Key', proc{ Tk.callback_break })
> b.bind('Control-KeyPress-w',
> proc{ Tk.callback_continue }) # continue to the next bindtag
> b.bind('Control-KeyPress-y', proc{})
> b.bind('Control-KeyPress-c', proc{t.insert(:end, "Press Ctrl-C !!\n")})
> b.bind('Control-Alt-KeyPress-c', proc{exit})
>
> t.insert(:end, "This is a test message.\n");
>
> Tk.after(10000){t.insert(:end, "This is another test message.\n")}
>
> Tk.mainloop
> ----------------------------------------------------------------


It goes without saying that the following is same to replace
the standard callback function of the text widget.
----------------------------------------------------
b.bind('Control-KeyPress-y', proc{puts "Press Ctrl-y!!\n"; Tk.callback_break})
----------------------------------------------------
--
Hidetoshi NAGAI ()


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
div box questions; float text around a box, fit box to image size Gnarlodious HTML 4 05-05-2010 11:30 AM
Conversion of text box as list box Neelu Java 1 01-10-2006 09:57 AM
Width of text input box vs. password input box cjl HTML 1 10-31-2005 11:46 AM
Linking a text box and/or a list box to an Access table's column. ryan.d.rembaum@kp.org ASP .Net 1 08-05-2005 04:17 AM
How to delete list box(text box) VRao Computer Support 3 01-24-2004 04:58 PM



Advertisments
 



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