Re: Counting text pixels

This is a discussion on Re: Counting text pixels within the TCL forums in Programming Languages category; S M Ryan schrieb: > I want to adjust the size of text widget so that all the text is vertically > visible for the current width, and no extra space. The information obviously > available or the text widget couldn't scroll. However it seems impossible to > prise it out of the 8.4 versions. > > It looks like the 8.5 has $t count -ypixels 1.0 end, but does that actually > count the entire vertical span, including scrolled off sections? Would this size > $t to fit exactly > > canvas $c ... > text $t ... > ...

Go Back   Application Development Forum > Programming Languages > TCL

Object Mix

Register FAQ Calendar Search Today's Posts Mark Forums Read
  #1  
Old 08-27-2008, 12:56 PM
Arndt Roger Schneider
Guest
 
Default Re: Counting text pixels

S M Ryan schrieb:
> I want to adjust the size of text widget so that all the text is vertically
> visible for the current width, and no extra space. The information obviously
> available or the text widget couldn't scroll. However it seems impossible to
> prise it out of the 8.4 versions.
>
> It looks like the 8.5 has $t count -ypixels 1.0 end, but does that actually
> count the entire vertical span, including scrolled off sections? Would this size
> $t to fit exactly
>
> canvas $c ...
> text $t ...
> ...
> $c create window -window $t -tags kumquat ...
> ...
> $c itemconfigure kumquat -height [
> $t count -ypixels 1.0 end
> ]


The width of Text can be measured without a
window, what you need is a font object!

font create meta -family helvetica -size 11
font measure meta Test
--> gives the width of "Test" in pixel

You have to calculate the height by hand!
height:= lines * [tk scaling]* <font size>

Or: In case of a canvas use bbox.

..c bbox my_textitem
--> left top right bottom

-roger
Reply With Quote
Reply


Thread Tools
Display Modes


All times are GMT -5. The time now is 08:50 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vB Ad Management by =RedTyger=

In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.