Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Java GUI > Re: printing a ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 5 Topic 9673 of 9914
Post > Topic >>

Re: printing a JLabel text above a JTable

by magowiz <magowizNOSPAM@[EMAIL PROTECTED] > Apr 29, 2008 at 04:24 PM

magowiz ha scritto:
> magowiz ha scritto:
>> Hi,
>> I'm trying to understand how to print a JLabel text above a JTable.
>> Since the JLabel text is quite long ( 1 or 2 rows) the JTable print 
>> method with the two MessageFormat gives me the header in a too big 
>> character size and so the text gets truncated.
>> I tried also with fjre****t library but in this case I got the column 
>> size reduced and I got the data on it truncated.
>> I would like to know how I can work it out.
>> Thanking in advance
>> Greetings
>>
>> magowiz
> 
> I solved modifying the print method in this example 
>
http://java.sun.com/developer/onlineTraining/Programming/JDCBook/Code/Re****t.java

> 
> 
> as it follows :
> 
> //drawing the two (in my case ) strings :
>
g2.drawString(DescRisJLabel.getText(),(int)0,(int)(0+fontHeight-fontDesent));

> 
>      
>
g2.drawString(DescRis2JLabel.getText(),(int)0,(int)(0+(fontHeight*2)-fontDesent));

> 
> 
> //translating
>              g2.translate(0f,headerHeightOnPage+(fontHeight*2));
>              g2.translate(0f,-pageIndex*pageHeightForTable);
> [...]
> 
> //setting clip
> g2.setClip(0, (int)((pageHeightForTable+(fontHeight*2)) * pageIndex),
>                            (int) Math.ceil(tableWidthOnPage),
>                            (int) Math.ceil(oneRowHeight * numRowsLeft));
> 
> with this mods it prints out the two JLabels on top of the jtable.

my mods works well only for the first page :(
 




 5 Posts in Topic:
printing a JLabel text above a JTable
magowiz <magowizNOSPAM  2008-04-25 18:28:47 
Re: printing a JLabel text above a JTable
Roedy Green <see_websi  2008-04-28 12:36:49 
Re: printing a JLabel text above a JTable
magowiz <magowizNOSPAM  2008-04-29 15:12:55 
Re: printing a JLabel text above a JTable
magowiz <magowizNOSPAM  2008-04-29 15:34:59 
Re: printing a JLabel text above a JTable
magowiz <magowizNOSPAM  2008-04-29 16:24:07 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sun Sep 7 2:52:21 CDT 2008.