use of com.robotoworks.mechanoid.ui.wizard.fields.TextField in project mechanoid by robotoworks.
the class NewMechanoidNetServiceClientPage method onAfterAddNameField.
@Override
protected void onAfterAddNameField(Composite parent, Font font) {
mBaseUrlField = new TextField(parent, Messages.NewMechanoidNetServiceClientPage_Widget_Label_Url);
mBaseUrlField.getTextField().addFocusListener(new FocusListener() {
@Override
public void focusLost(FocusEvent e) {
}
@Override
public void focusGained(FocusEvent e) {
getFieldInfoLabel().setText(Messages.NewMechanoidNetServiceClientPage_Widget_Label_Message_Url);
}
});
}
use of com.robotoworks.mechanoid.ui.wizard.fields.TextField in project mechanoid by robotoworks.
the class NewMechanoidElementPage method createFields.
protected void createFields(Composite parent, Font font) {
Composite group = new Composite(parent, SWT.NONE);
GridLayout layout = new GridLayout();
layout.numColumns = 3;
layout.marginWidth = 0;
group.setLayout(layout);
group.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.GRAB_HORIZONTAL));
group.setFont(font);
IContainer initialRoot = getMechanoidWizard().getSelectedFolder() != null ? getMechanoidWizard().getSelectedFolder() : getMechanoidWizard().getSelectedProject();
mFolderField = new ContainerBrowserField(group, Messages.NewMechanoidElementPage_Widget_Label_Folder, initialRoot);
mFolderField.getTextField().addModifyListener(mValidatingModifyListener);
mFolderField.getTextField().addFocusListener(mFieldFocusedListener);
mPackageField = new PackageBrowserField(group, Messages.NewMechanoidElementPage_Widget_Label_Package);
mPackageField.setJavaProject(getMechanoidWizard().getSelectedJavaProject());
mPackageField.getTextField().addModifyListener(mValidatingModifyListener);
mPackageField.getTextField().addFocusListener(mFieldFocusedListener);
mElementNameField = new TextField(group, Messages.NewMechanoidElementPage_Widget_Label_Name);
mElementNameField.getTextField().addModifyListener(mValidatingModifyListener);
mElementNameField.getTextField().addFocusListener(mFieldFocusedListener);
mElementNameField.getTextField().addFocusListener(mFieldFocusedListener);
onAfterAddNameField(group, font);
Label seperator = new Label(parent, SWT.SEPARATOR | SWT.HORIZONTAL);
seperator.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
createFieldInfoLabel(parent);
//createAddMechanoidLibraryGroup(parent);
}
Aggregations