Link to home
Start Free TrialLog in
Avatar of mte01
mte01Flag for Lebanon

asked on

Panel contents and A4 paper

I have a large JPanel that has inside it an array of JPanels; a header JPanel is first added and then the elements of this array are added in the code to the large JPanel; When the sum of their size reaches the size of an A4 Paper, I want the header panel to be inserted, and then of course I want to continue inserting the elements of the JPanel array  until consequently the sum of the new elements' size (plus the header) reaches the size of an A4 paper, the header JPanel would be inserted again....etc

Any Ideas??
Avatar of sciuriware
sciuriware

If you can determine the size limit you want, you might just count.
It depends on the layoutmanager and the use you make of it how much space
exists between the panels.

B.t.w.: gonna scroll? How large is your screen?

May be you are on the wrong (presentation) way; think about cardlayouts.

;JOOP!
Avatar of mte01

ASKER

Yes I am going to scroll to see the whole thing (I am doing a Java implementation of something that was done before using an HTML interface for the client and a COBOL program at the server). The HTML interface is that way, I just have to imitate it.
Avatar of mte01

ASKER

i.e. the size of A4 paper is 297mm x 210mm (its length is then 297 mm); how much that would be in pixels?
You can play an easy game when you just put the HTML in a JEditorPane .....

A pixel is not a measure!!!!! several screens have many pixels per inch, others have a few.
;JOOP!
Avatar of mte01

ASKER

>> A pixel is not a measure!!!!!

I understand but what I want is just a reference (mm to pixels according to a screen resolution); without putting a ruler on the screen ;)

>> You can play an easy game when you just put the HTML in a JEditorPane .....

Yes but I will not be using the COBOL program as the server ; I will be doing everything in Java (server and client), and the logic would be different (and you don't have to comment on using JSP or ASP instead because this will be the subject of a series of questions that I will be posting soon)
Depends on the dpi you want to use
eg. a screen is typically about 75 dpi, whereas printer operate at about 300 dpi (or greater)
Avatar of mte01

ASKER

Let's say my printer is 300 dpi....what do I do then??
300dpi == 300 pixels per inch
Avatar of mte01

ASKER

So... using some calculations the length of the A4 paper is approximately 11.693 inches which makes 3508 pixels (on the paper) while it's 877 pixels on the screen (11.693*75), so what would be the solution then objects?
If you know the size you want it to be, why can't you just calculate how many panels will fit.
You can always scale it when you're printing as well.

What exactly is it you are trying to achieve?

Avatar of mte01

ASKER

No, the size and the number of the panels that will be on the screen is uncontrollable (it is dynamic - depending on user choices). I just want to print all these panels (i.e the array of panels which is in a single large panel) on A4 paper. I want that every time a new A4 paper is printed to have a header panel be printed at the top (it may interfere a panel which will cut this panel into half: one on the 1st A4 paper and one on the 2nd, and of course before the one on the 2nd the header panel of the A4 paper)
you'd deal with that at printing time, you wouldn't need to add/remove components.
Avatar of mte01

ASKER

yeh yeh i know.....but my question is still unanswered how do i add a header panel when the height of the panels reach the size of an A4 paper??
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mte01

ASKER

Okk...I'll try that later....and I'll inform you of my results.....but I still need to know how much the size of a JPanel should be for it to fit on an A4 paper (for another puropse which I think I'll post another question for it after I finish from the header thing)