use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class PropsUI method loadScreens.
public void loadScreens() {
screens = new Hashtable<String, WindowProperty>();
int nr = 1;
String name = properties.getProperty("ScreenName" + nr);
while (name != null) {
boolean max = YES.equalsIgnoreCase(properties.getProperty(STRING_SIZE_MAX + nr));
int x = Const.toInt(properties.getProperty(STRING_SIZE_X + nr), 0);
int y = Const.toInt(properties.getProperty(STRING_SIZE_Y + nr), 0);
int w = Const.toInt(properties.getProperty(STRING_SIZE_W + nr), 320);
int h = Const.toInt(properties.getProperty(STRING_SIZE_H + nr), 200);
WindowProperty winprop = new WindowProperty(name, max, x, y, w, h);
screens.put(name, winprop);
nr++;
name = properties.getProperty("ScreenName" + nr);
}
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class SQLEditor method dispose.
public void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class ArgumentsDialog method dispose.
private void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class BrowserEnvironmentWarningDialog method dispose.
/**
* dispose
*
* used to dispose the dialog.
*/
public void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class CheckResultDialog method dispose.
public void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
Aggregations