use of com.revolsys.swing.component.TabbedValuePanel in project com.revolsys.open by revolsys.
the class AbstractLayer method newPropertiesPanel.
@Override
public TabbedValuePanel newPropertiesPanel() {
final TabbedValuePanel tabPanel = new TabbedValuePanel("Layer " + this + " Properties", this);
newPropertiesTabGeneral(tabPanel);
newPropertiesTabCoordinateSystem(tabPanel);
return tabPanel;
}
use of com.revolsys.swing.component.TabbedValuePanel in project com.revolsys.open by revolsys.
the class GeoreferencedImageLayer method newPropertiesPanel.
@Override
public TabbedValuePanel newPropertiesPanel() {
final TabbedValuePanel propertiesPanel = super.newPropertiesPanel();
final TiePointsPanel tiePointsPanel = newTableViewComponent(null);
if (tiePointsPanel != null) {
Borders.titled(tiePointsPanel, "Tie Points");
propertiesPanel.addTab("Geo-Referencing", tiePointsPanel);
}
return propertiesPanel;
}
use of com.revolsys.swing.component.TabbedValuePanel in project com.revolsys.open by revolsys.
the class AbstractRecordLayer method newPropertiesPanel.
@Override
public TabbedValuePanel newPropertiesPanel() {
final TabbedValuePanel propertiesPanel = super.newPropertiesPanel();
newPropertiesPanelFields(propertiesPanel);
newPropertiesPanelFieldNamesSet(propertiesPanel);
newPropertiesPanelStyle(propertiesPanel);
newPropertiesPanelSnapping(propertiesPanel);
return propertiesPanel;
}
use of com.revolsys.swing.component.TabbedValuePanel in project com.revolsys.open by revolsys.
the class GridLayer method newPropertiesPanel.
@Override
public TabbedValuePanel newPropertiesPanel() {
final TabbedValuePanel propertiesPanel = super.newPropertiesPanel();
newPropertiesPanelStyle(propertiesPanel);
return propertiesPanel;
}
use of com.revolsys.swing.component.TabbedValuePanel in project com.revolsys.open by revolsys.
the class TiledGriddedElevationModelLayer method newPropertiesPanel.
@Override
public TabbedValuePanel newPropertiesPanel() {
final TabbedValuePanel propertiesPanel = super.newPropertiesPanel();
newPropertiesPanelStyle(propertiesPanel);
return propertiesPanel;
}
Aggregations