/***************************************************************** * 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.editor.dbentity; import org.apache.cayenne.map.DbEntity; import org.apache.cayenne.map.DbRelationship; import org.apache.cayenne.map.event.DbEntityListener; import org.apache.cayenne.map.event.EntityEvent; import org.apache.cayenne.modeler.Application; import org.apache.cayenne.modeler.ProjectController; import org.apache.cayenne.modeler.action.ActionManager; import org.apache.cayenne.modeler.action.CopyAttributeRelationshipAction; import org.apache.cayenne.modeler.action.CreateAttributeAction; import org.apache.cayenne.modeler.action.CreateObjEntityAction; import org.apache.cayenne.modeler.action.CreateRelationshipAction; import org.apache.cayenne.modeler.action.CutAttributeRelationshipAction; import org.apache.cayenne.modeler.action.DbEntityCounterpartAction; import org.apache.cayenne.modeler.action.DbEntitySyncAction; import org.apache.cayenne.modeler.action.PasteAction; import org.apache.cayenne.modeler.action.RemoveAttributeRelationshipAction; import org.apache.cayenne.modeler.event.DbEntityDisplayListener; import org.apache.cayenne.modeler.event.EntityDisplayEvent; import org.apache.cayenne.modeler.pref.ComponentGeometry; import org.apache.cayenne.modeler.util.CayenneAction; import org.apache.cayenne.modeler.util.ModelerUtil; import org.apache.cayenne.swing.components.image.FilteredIconFactory; import org.slf4j.LoggerFactory; import javax.swing.Icon; import javax.swing.JButton; import javax.swing.JPanel; import javax.swing.JSplitPane; import javax.swing.JToolBar; import java.awt.BorderLayout; /** * Combines DbEntityAttributeTab and DbEntityRelationshipTab in JSplitPane. */ public class DbEntityAttributeRelationshipTab extends JPanel implements DbEntityDisplayListener, DbEntityListener { public DbEntityAttributePanel attributePanel; public DbEntityRelationshipPanel relationshipPanel; public JButton resolve = new CayenneAction.CayenneToolbarButton(null, 0); private JSplitPane splitPane; private ProjectController mediator; private CutAttributeRelationshipAction cut; private RemoveAttributeRelationshipAction remove; private CopyAttributeRelationshipAction copy; private JToolBar toolBar; public DbEntityAttributeRelationshipTab(ProjectController mediator) { this.mediator = mediator; init(); initToolBar(); mediator.addDbEntityDisplayListener(this); } private void init() { this.setLayout(new BorderLayout()); attributePanel = new DbEntityAttributePanel(mediator, this); relationshipPanel = new DbEntityRelationshipPanel(mediator, this); splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, attributePanel, relationshipPanel); splitPane.setOneTouchExpandable(true); splitPane.setResizeWeight(0.5); try { ComponentGeometry geometry = new ComponentGeometry( this.getClass(), "dbEntityAttrRelTab/splitPane/divider"); geometry.bindIntProperty(splitPane, JSplitPane.DIVIDER_LOCATION_PROPERTY, -1); } catch (Exception ex) { LoggerFactory.getLogger(getClass()).error("Cannot bind divider property", ex); } add(splitPane); } private void initToolBar() { toolBar = new JToolBar(); toolBar.setFloatable(false); ActionManager actionManager = Application.getInstance().getActionManager(); toolBar.add(actionManager.getAction(CreateAttributeAction.class).buildButton(1)); toolBar.add(actionManager.getAction(CreateRelationshipAction.class).buildButton(3)); toolBar.addSeparator(); toolBar.add(actionManager.getAction(CreateObjEntityAction.class).buildButton(1)); toolBar.add(actionManager.getAction(DbEntitySyncAction.class).buildButton(2)); toolBar.add(actionManager.getAction(DbEntityCounterpartAction.class).buildButton(3)); toolBar.addSeparator(); Icon ico = ModelerUtil.buildIcon("icon-edit.png"); resolve.setToolTipText("Database Mapping"); resolve.setIcon(ico); resolve.setDisabledIcon(FilteredIconFactory.createDisabledIcon(ico)); toolBar.add(resolve).setEnabled(false); cut = actionManager.getAction(CutAttributeRelationshipAction.class); remove = actionManager.getAction(RemoveAttributeRelationshipAction.class); copy = actionManager.getAction(CopyAttributeRelationshipAction.class); toolBar.addSeparator(); toolBar.add(remove.buildButton()); toolBar.addSeparator(); toolBar.add(cut.buildButton(1)); toolBar.add(copy.buildButton(2)); toolBar.add(actionManager.getAction(PasteAction.class).buildButton(3)); add(toolBar, BorderLayout.NORTH); } public void updateActions(Object[] params) { ModelerUtil.updateActions( params.length, RemoveAttributeRelationshipAction.class, CutAttributeRelationshipAction.class, CopyAttributeRelationshipAction.class); if (params instanceof DbRelationship[]) { resolve.setEnabled(params.length > 0); } } public JButton getResolve() { return resolve; } public JSplitPane getSplitPane() { return splitPane; } public DbEntityAttributePanel getAttributePanel() { return attributePanel; } public DbEntityRelationshipPanel getRelationshipPanel() { return relationshipPanel; } public void dbEntityChanged(EntityEvent e) { relationshipPanel.dbEntityChanged(e); } public void dbEntityAdded(EntityEvent e) { relationshipPanel.dbEntityAdded(e); } public void dbEntityRemoved(EntityEvent e) { relationshipPanel.dbEntityRemoved(e); } public void currentDbEntityChanged(EntityDisplayEvent e) { DbEntity entity = (DbEntity) e.getEntity(); if(entity.getDataMap().getMappedEntities(entity).isEmpty()) { toolBar.getComponentAtIndex(4).setEnabled(false); toolBar.getComponentAtIndex(5).setEnabled(false); } else { toolBar.getComponentAtIndex(4).setEnabled(true); toolBar.getComponentAtIndex(5).setEnabled(true); } } }