if (Main.applet) {
return new Component[] {
new JMenuItem(new LayerListDialog.ShowHideLayerAction(this)),
new JMenuItem(new LayerListDialog.DeleteLayerAction(this)),
new JSeparator(),
new JMenuItem(new RenameLayerAction(getAssociatedFile(),
this)), new JSeparator(),
new JMenuItem(new LayerListPopup.InfoAction(this)) };
}
return new Component[] {
new JMenuItem(new LayerListDialog.ShowHideLayerAction(this)),
new JMenuItem(new LayerListDialog.DeleteLayerAction(this)),
new JSeparator(),
new JMenuItem(new SaveAction(this)),
new JMenuItem(new SaveAsAction(this)),
new JMenuItem(new GpxExportAction(this)),
new JMenuItem(new ConvertToGpxLayerAction()),
new JSeparator(),
new JMenuItem(new RenameLayerAction(getAssociatedFile(), this)),
new JSeparator(),
new JMenuItem(new LayerListPopup.InfoAction(this)) };
}