Search in sources :

Example 1 with TabbedValuePanel

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;
}
Also used : TabbedValuePanel(com.revolsys.swing.component.TabbedValuePanel)

Example 2 with TabbedValuePanel

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;
}
Also used : TabbedValuePanel(com.revolsys.swing.component.TabbedValuePanel)

Example 3 with TabbedValuePanel

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;
}
Also used : TabbedValuePanel(com.revolsys.swing.component.TabbedValuePanel)

Example 4 with TabbedValuePanel

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;
}
Also used : TabbedValuePanel(com.revolsys.swing.component.TabbedValuePanel)

Example 5 with TabbedValuePanel

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;
}
Also used : TabbedValuePanel(com.revolsys.swing.component.TabbedValuePanel)

Aggregations

TabbedValuePanel (com.revolsys.swing.component.TabbedValuePanel)8 MapPanel (com.revolsys.swing.map.MapPanel)2 Window (java.awt.Window)2 LayerStylePanel (com.revolsys.swing.map.layer.record.style.panel.LayerStylePanel)1