Package org.malai.swing.widget

Examples of org.malai.swing.widget.MTextField




  @Override
  protected void initialiseWidgets() {
    titleField = new MTextField();
    labelField = new MTextField();
    middleHorizPosCB = new MCheckBox(LangTool.INSTANCE.getStringActions("Instruments.1")); //$NON-NLS-1$
    positionCB = new MComboBox<>(VerticalPosition.values(), new JLabel(LangTool.INSTANCE.getStringActions("Instruments.2"))); //$NON-NLS-1$
    scaleField = new MSpinner(new MSpinner.MSpinnerNumberModel(1., 0.1, 100., 0.1), new JLabel(LangTool.INSTANCE.getStringActions("Instruments.3"))); //$NON-NLS-1$
  }
View Full Code Here


      unitChoice.addItem(Unit.CM.getLabel());
      unitChoice.addItem(Unit.INCH.getLabel());
      unitChoice.setMaximumSize(new Dimension(160, height));
      unitChoice.setSelectedItem(Unit.CM.getLabel());

      pathExportField    = new MTextField();
      pathOpenField      = new MTextField();

      antialiasingCheckBox = new MCheckBox(LangTool.INSTANCE.getStringDialogFrame("PreferencesFrame.antiAl"));//$NON-NLS-1$
      renderingCheckBox    = new MCheckBox(LangTool.INSTANCE.getStringDialogFrame("PreferencesFrame.rendQ"));//$NON-NLS-1$
      colorRenderCheckBox  = new MCheckBox(LangTool.INSTANCE.getStringDialogFrame("PreferencesFrame.colRendQ"));//$NON-NLS-1$
      alpaInterCheckBox    = new MCheckBox(LangTool.INSTANCE.getStringDialogFrame("PreferencesFrame.AlphaQ"));//$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.malai.swing.widget.MTextField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.