Reputation: 5526
I am making a network application where users can change channels and I want it to look similar to ventrilo channels (as seen below).
Does anyone knows which Swing classes I should be looking at in order to produce this layout?
Thanks
Upvotes: 2
Views: 370
Reputation: 205785
Also, consider org.netbeans.swing.outline.Outline
, a hierarchical view derived from JTable
. Additional information is shown here.
Upvotes: 2
Reputation: 109813
For Container is there BorderLayout
1) in the Container#NORTH
topPanel (username - bindings) with BorderLayout
(EAST-CENTER-WEST
)
2) in the Container#CENTER
are three JPanels
to the NORTH
empty JLabel
on EAST
, JLabel with text ping:41 on the CENTER
JPanel
with JButtons on the WEST
with GridLayout(7, 1, 10, 0)
in the CENTER
is there JScrollPane with JTree
3) in the Container#SOUTH
bottomPanel with two JCheckBoxes ba using GridLayout(1, 2)
Upvotes: 2