Search in sources :

Example 1 with ICommandAction

use of org.jowidgets.api.command.ICommandAction in project jo-client-platform by jo-source.

the class BeanRelationGraphImpl method initToolBar.

private IToolBarModel initToolBar() {
    final IActionBuilderFactory actionBF = Toolkit.getActionBuilderFactory();
    final ToolBarModel model = new ToolBarModel();
    model.addTextLabel(Messages.getString("BeanRelationGraphImpl.max.nodecount") + " ");
    final IInputFieldBluePrint<Integer> textFieldBP = BPF.inputFieldIntegerNumber().setMaxLength(3).setValue(maxNodeCount);
    maxNodeTextField = new InputControlItemModel<Integer>(textFieldBP, 30);
    maxNodeTextField.addInputListener(new IInputListener() {

        @Override
        public void inputChanged() {
            if (maxNodeTextField.getValue() != null) {
                maxNodeCount = maxNodeTextField.getValue();
                relationTreeModel.load();
            }
        }
    });
    model.addItem(maxNodeTextField);
    model.addSeparator();
    model.addTextLabel("Expand Level ");
    final IComboBoxSelectionBluePrint<Integer> comboBoxExpandLevelBp = BPF.comboBoxSelectionIntegerNumber().setElements(0, 1, 2, 3, 4, 5).autoCompletionOff();
    comboBoxExpandLevel = new InputControlItemModel<Integer>(comboBoxExpandLevelBp, 35);
    comboBoxExpandLevel.setValue(autoExpandLevel);
    comboBoxExpandLevel.addInputListener(new IInputListener() {

        @Override
        public void inputChanged() {
            if (comboBoxExpandLevel.getValue() != null) {
                autoExpandLevel = comboBoxExpandLevel.getValue();
                runLayout(true);
                vis.run("expand");
            }
        }
    });
    model.addItem(comboBoxExpandLevel);
    model.addSeparator();
    final IActionBuilder settingsDialogActionBuilder = actionBF.create();
    settingsDialogActionBuilder.setIcon(CapIcons.GRAPH_SETTINGS);
    settingsDialogActionBuilder.setCommand(new ICommandExecutor() {

        @Override
        public void execute(final IExecutionContext executionContext) throws Exception {
            openUpdateLayoutSettingsDialog();
        }
    });
    final ICommandAction settingsDialogAction = settingsDialogActionBuilder.build();
    final IComboBoxSelectionBluePrint<GraphLayout> comboBoxBp = BPF.comboBoxSelection(GraphLayout.values());
    comboBoxBp.setAutoCompletion(false);
    final InputControlItemModel<GraphLayout> comboBox = new InputControlItemModel<GraphLayout>(comboBoxBp, 130);
    comboBox.addInputListener(new IInputListener() {

        @Override
        public void inputChanged() {
            layoutManager.resetNodePositions();
            settingsDialogAction.setEnabled(true);
            setLayout(comboBox.getValue());
            if (layoutManager.getLabelEdgeLayout() != null) {
                layoutManager.getLabelEdgeLayout().run();
            }
            layoutManager.assignAnchorPoint(display, activeLayout);
            runLayout(true);
            if (layoutSettingsDialog != null) {
                layoutSettingsDialog.setVisible(false);
                layoutSettingsDialog.dispose();
                layoutSettingsDialog = null;
            }
        }
    });
    comboBox.setValue(GraphLayout.FORCE_DIRECTED_LAYOUT);
    model.addItem(comboBox);
    final ICheckedItemModel checkItemModel = model.addCheckedItem(CapIcons.GRAPH_ANIMATION, Messages.getMessage("BeanRelationGraphImpl.animation.on").get());
    checkItemModel.setSelected(true);
    checkItemModel.addItemListener(new IItemStateListener() {

        private boolean on = true;

        @Override
        public void itemStateChanged() {
            if (on) {
                checkItemModel.setText(Messages.getMessage("BeanRelationGraphImpl.animation.on").get());
                switchNodeAnimation(true);
            } else {
                checkItemModel.setText(Messages.getMessage("BeanRelationGraphImpl.animation.off").get());
                switchNodeAnimation(false);
            }
            on = !on;
        }
    });
    final IActionBuilder groupFilterActionBuilder = actionBF.create();
    groupFilterActionBuilder.setIcon(IconsSmall.SETTINGS);
    groupFilterActionBuilder.setCommand(new ICommandExecutor() {

        @Override
        public void execute(final IExecutionContext executionContext) throws Exception {
            openUpdateEdgeVisibilityDialog(0);
        }
    });
    final ICommandAction groupFilterAction = groupFilterActionBuilder.build();
    model.addSeparator();
    model.addAction(settingsDialogAction);
    model.addAction(groupFilterAction);
    model.addSeparator();
    final ICheckedItemModel edgeCheckedItem = model.addCheckedItem("Edge Label");
    edgeCheckedItem.setIcon(CapIcons.GRAPH_LETTERING);
    edgeCheckedItem.setSelected(false);
    edgeCheckedItem.addItemListener(new IItemStateListener() {

        @Override
        public void itemStateChanged() {
            layoutManager.getLabelEdgeLayout().setEdgesVisible(edgeCheckedItem.isSelected());
            runLayout(true);
        }
    });
    final IActionBuilder screenShotActionBuilder = actionBF.create();
    screenShotActionBuilder.setText(Messages.getMessage("BeanRelationGraphImpl.screenshot").get());
    screenShotActionBuilder.setIcon(CapIcons.GRAPH_SNAPSHOT);
    screenShotActionBuilder.setToolTipText(Messages.getMessage("BeanRelationGraphImpl.copy.in.clipboard").get());
    screenShotActionBuilder.setCommand(new ICommandExecutor() {

        @Override
        public void execute(final IExecutionContext executionContext) throws Exception {
            final BufferedImage bufImage = new BufferedImage(display.getSize().width, display.getSize().height, BufferedImage.TYPE_INT_RGB);
            display.paint(bufImage.createGraphics());
            java.awt.Toolkit.getDefaultToolkit().getSystemClipboard().setContents(new ImageSelection(bufImage), null);
        }
    });
    final ICommandAction screenShotAction = screenShotActionBuilder.build();
    model.addAction(screenShotAction);
    return model;
}
Also used : ToolBarModel(org.jowidgets.tools.model.item.ToolBarModel) IToolBarModel(org.jowidgets.api.model.item.IToolBarModel) InputControlItemModel(org.jowidgets.tools.model.item.InputControlItemModel) IActionBuilderFactory(org.jowidgets.api.command.IActionBuilderFactory) IItemStateListener(org.jowidgets.common.widgets.controller.IItemStateListener) IOException(java.io.IOException) UnsupportedFlavorException(java.awt.datatransfer.UnsupportedFlavorException) BufferedImage(java.awt.image.BufferedImage) ICommandAction(org.jowidgets.api.command.ICommandAction) ICheckedItemModel(org.jowidgets.api.model.item.ICheckedItemModel) IExecutionContext(org.jowidgets.api.command.IExecutionContext) ICommandExecutor(org.jowidgets.api.command.ICommandExecutor) IActionBuilder(org.jowidgets.api.command.IActionBuilder) IInputListener(org.jowidgets.common.widgets.controller.IInputListener)

Example 2 with ICommandAction

use of org.jowidgets.api.command.ICommandAction in project jo-client-platform by jo-source.

the class BeanTableSetToAllActionBuilder method build.

@Override
public ICommandAction build() {
    final ICommandAction result = super.build();
    table.addCellMenuListener(new IPopupMenuListener<ITableCellPopupEvent>() {

        @Override
        public void beforeMenuShow(final ITableCellPopupEvent event) {
            final int columnIndex = event.getColumnIndex();
            final int rowIndex = event.getRowIndex();
            final IBeanTableModel<?> model = table.getModel();
            final String entityLabelPlural = model.getEntityLabelPlural();
            final Object cellValue = model.getValue(rowIndex, columnIndex);
            final String cellText;
            if (cellValue != null) {
                cellText = StringUtils.truncateToLength(model.getTableModel().getCell(rowIndex, columnIndex).getText(), 30);
            } else {
                cellText = NOT_SET.get();
            }
            final IAttribute<Object> attribute = model.getAttribute(columnIndex);
            final String columnLabel = attribute.getLabel().get();
            final ArrayList<Integer> selection = model.getSelection();
            if (selection.size() > 1) {
                // set to selection
                result.setText(MessageReplacer.replace(SET_TO_SELECTION.get(), columnLabel, cellText, entityLabelPlural));
            } else if (selection.size() <= 1) {
                // set to all
                result.setText(MessageReplacer.replace(SET_TO_ALL.get(), columnLabel, cellText, entityLabelPlural));
            }
        }
    });
    return result;
}
Also used : ICommandAction(org.jowidgets.api.command.ICommandAction) IAttribute(org.jowidgets.cap.ui.api.attribute.IAttribute) ArrayList(java.util.ArrayList) ITableCellPopupEvent(org.jowidgets.common.widgets.controller.ITableCellPopupEvent) IBeanTableModel(org.jowidgets.cap.ui.api.table.IBeanTableModel)

Aggregations

ICommandAction (org.jowidgets.api.command.ICommandAction)2 UnsupportedFlavorException (java.awt.datatransfer.UnsupportedFlavorException)1 BufferedImage (java.awt.image.BufferedImage)1 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1 IActionBuilder (org.jowidgets.api.command.IActionBuilder)1 IActionBuilderFactory (org.jowidgets.api.command.IActionBuilderFactory)1 ICommandExecutor (org.jowidgets.api.command.ICommandExecutor)1 IExecutionContext (org.jowidgets.api.command.IExecutionContext)1 ICheckedItemModel (org.jowidgets.api.model.item.ICheckedItemModel)1 IToolBarModel (org.jowidgets.api.model.item.IToolBarModel)1 IAttribute (org.jowidgets.cap.ui.api.attribute.IAttribute)1 IBeanTableModel (org.jowidgets.cap.ui.api.table.IBeanTableModel)1 IInputListener (org.jowidgets.common.widgets.controller.IInputListener)1 IItemStateListener (org.jowidgets.common.widgets.controller.IItemStateListener)1 ITableCellPopupEvent (org.jowidgets.common.widgets.controller.ITableCellPopupEvent)1 InputControlItemModel (org.jowidgets.tools.model.item.InputControlItemModel)1 ToolBarModel (org.jowidgets.tools.model.item.ToolBarModel)1