Example #1
0
 /*
  * (non-Javadoc)
  * @see com.iver.andami.ui.mdiManager.IWindow#getWindowInfo()
  */
 public WindowInfo getWindowInfo() {
   WindowInfo windowInfo = new WindowInfo(WindowInfo.MODALDIALOG | WindowInfo.RESIZABLE);
   windowInfo.setTitle(PluginServices.getText(this, "capa_a_reproyectar"));
   windowInfo.setWidth(330);
   windowInfo.setHeight(320);
   return windowInfo;
 }
Example #2
0
 public WindowInfo getWindowInfo() {
   WindowInfo m_viewinfo = new WindowInfo(WindowInfo.MODALDIALOG);
   m_viewinfo.setTitle(PluginServices.getText(this, "Intervalo"));
   m_viewinfo.setWidth(this.getWidth());
   m_viewinfo.setHeight(this.getHeight());
   return m_viewinfo;
 }
Example #3
0
 public WindowInfo getWindowInfo() {
   if (wi == null) {
     wi = new WindowInfo(WindowInfo.MODALDIALOG | WindowInfo.RESIZABLE);
     wi.setWidth(780);
     wi.setHeight(400);
     wi.setTitle(PluginServices.getText(this, "symbol_property_editor"));
   }
   return wi;
 }
 @Override
 public WindowInfo getWindowInfo() {
   if (viewInfo == null) {
     viewInfo = new WindowInfo(WindowInfo.ICONIFIABLE | WindowInfo.RESIZABLE);
     viewInfo.setTitle(PluginServices.getText(this, "From_Raster_-_Interpolator"));
     viewInfo.setHeight(250);
     viewInfo.setWidth(382);
   }
   return viewInfo;
 }
  /** This method initializes this */
  private void initialize() {
    winfo.setWidth(370);
    winfo.setHeight(317 - 25);
    winfo.setTitle(PluginServices.getText(this, "connection_parameters"));

    this.setSize(new java.awt.Dimension(360, 329));
    this.setLayout(null);
    this.add(getCancelButton(), null);
    this.add(getOkButton(), null);
    this.add(getParamsPanel(), null);
  }
 /** @see com.iver.mdiApp.ui.MDIManager.View#getViewInfo() */
 public WindowInfo getWindowInfo() {
   WindowInfo m_viewinfo = new WindowInfo(WindowInfo.PALETTE | WindowInfo.RESIZABLE);
   // Establecer el tamao del formulario
   m_viewinfo.setWidth(wPanel);
   m_viewinfo.setHeight(hPanel);
   // Establecer el ttulo del formulario
   m_viewinfo.setTitle(PluginServices.getText(this, "principal_components"));
   // punto X de la pantalla donde se situa
   m_viewinfo.setX(300);
   return m_viewinfo;
 }
Example #7
0
 /* (non-Javadoc)
  * @see com.iver.mdiApp.ui.MDIManager.View#getViewInfo()
  */
 public WindowInfo getWindowInfo() {
   WindowInfo m_viewinfo = new WindowInfo(WindowInfo.MODALDIALOG);
   m_viewinfo.setTitle(PluginServices.getText(this, "cambio_nombre"));
   return m_viewinfo;
 }
 public WindowInfo getWindowInfo() {
   WindowInfo m_viewinfo = new WindowInfo(WindowInfo.MODALDIALOG | WindowInfo.RESIZABLE);
   m_viewinfo.setTitle(PluginServices.getText(this, "propiedades_capa"));
   return m_viewinfo;
 }