use of org.jowidgets.common.widgets.controller.IInputListener in project jo-client-platform by jo-source.
the class DocumentBeanFormPluginImpl method addBrowserAttribute.
private void addBrowserAttribute(final IContainer container, final IAttribute<?> attribute, final IBeanFormControlFactory controlFactory) {
container.setLayout(new MigLayoutDescriptor("wrap", "0[grow, 0::]0", "0[]0[grow, 0::]0"));
final String propertyName = attribute.getPropertyName();
@SuppressWarnings("unchecked") final IInputControl<IDocument> inputField = (IInputControl<IDocument>) container.add(controlFactory.createControl(propertyName), "growx, w 0::");
final IBrowser browser = container.add(BrowserBPF.browser(), MigLayoutFactory.GROWING_CELL_CONSTRAINTS);
container.addShowingStateListener(new IShowingStateListener() {
@Override
public void showingStateChanged(final boolean isShowing) {
if (isShowing) {
setUrl(container, browser, inputField);
}
}
});
inputField.addInputListener(new IInputListener() {
@Override
public void inputChanged() {
setUrl(container, browser, inputField);
}
});
}
use of org.jowidgets.common.widgets.controller.IInputListener 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;
}
Aggregations