blob: 391b39014f50f171d26d300a18fc7d17cc3e4e44 [file] [log] [blame]
/*****************************************************************
* 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.project;
import org.apache.cayenne.modeler.adapters.DataMapAdapter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.jensd.fx.glyphs.GlyphsDude;
import de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon;
import javafx.scene.control.ContextMenu;
import javafx.scene.control.MenuItem;
import javafx.scene.control.TreeItem;
public class DataMapTreeItem extends TreeItem<String> implements CayenneTreeItem<DataMapAdapter>
{
private static final Logger LOGGER = LoggerFactory.getLogger(DataMapTreeItem.class);
private final DataMapAdapter dataMapAdapter;
public DataMapTreeItem(final DataMapAdapter dataMapAdapter, final TreeItem<String> parent)
{
this.dataMapAdapter = dataMapAdapter;
valueProperty().bindBidirectional(dataMapAdapter.nameProperty());
setGraphic(GlyphsDude.createIcon(FontAwesomeIcon.CUBES, TREE_ICON_SIZE));
parent.getChildren().add(this);
setExpanded(true);
}
@Override
public DataMapAdapter getPropertyAdapter()
{
return dataMapAdapter;
}
@Override
public ContextMenu getContextMenu()
{
MenuItem addInbox = new MenuItem("Data Map Menu");
addInbox.setOnAction(event -> LOGGER.debug("Data Map Context Menu Event: " + event));
return new ContextMenu(addInbox);
}
}