/***************************************************************** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. ****************************************************************/ package org.apache.cayenne.modeler.dialog.db.gen; import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import javax.swing.JCheckBox; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import com.jgoodies.forms.builder.PanelBuilder; import com.jgoodies.forms.layout.CellConstraints; import com.jgoodies.forms.layout.FormLayout; /** */ public class TableSelectorView extends JPanel { protected JTable tables; protected JCheckBox checkAll; protected JLabel checkAllLabel; public TableSelectorView() { this.checkAll = new JCheckBox(); this.checkAllLabel = new JLabel("Check All Tables"); checkAll.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent event) { if (checkAll.isSelected()) { checkAllLabel.setText("Uncheck All Tables"); } else { checkAllLabel.setText("Check All Tables"); } } }); // assemble JPanel topPanel = new JPanel(new FlowLayout(FlowLayout.LEADING)); topPanel.add(checkAll); topPanel.add(checkAllLabel); tables = new JTable(); tables.setRowHeight(25); tables.setRowMargin(3); CellConstraints cc = new CellConstraints(); PanelBuilder builder = new PanelBuilder(new FormLayout( "fill:min(50dlu;pref):grow", "p, 3dlu, fill:40dlu:grow")); builder.setDefaultDialogBorder(); builder.addSeparator("Select Tables", cc.xy(1, 1)); builder.add(new JScrollPane( tables, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER), cc.xy(1, 3)); setLayout(new BorderLayout()); add(topPanel, BorderLayout.NORTH); add(builder.getPanel(), BorderLayout.CENTER); } public JTable getTables() { return tables; } public JCheckBox getCheckAll() { return checkAll; } }