You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
3 years ago
|
package com.fr.plugin.lzljgdmap.ui;
|
||
|
|
||
|
import com.fr.design.gui.frpane.AttributeChangeListener;
|
||
|
import com.fr.extended.chart.AbstractExtendedStylePane;
|
||
|
import com.fr.extended.chart.ExtendedScrollPane;
|
||
|
import com.fr.plugin.lzljgdmap.LzljMapChart;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author fr.open
|
||
|
* @date 2022/8/19
|
||
|
*/
|
||
|
public class LzljMapStylePane extends AbstractExtendedStylePane<LzljMapChart> {
|
||
|
|
||
|
private AttributeChangeListener attributeChangeListener;
|
||
|
|
||
|
public LzljMapStylePane(){
|
||
|
super();
|
||
|
}
|
||
|
public LzljMapStylePane(AttributeChangeListener attributeChangeListener){
|
||
|
super(attributeChangeListener);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected List<ExtendedScrollPane<LzljMapChart>> initPaneList() {
|
||
|
List<ExtendedScrollPane<LzljMapChart>> list = new ArrayList<ExtendedScrollPane<LzljMapChart>>();
|
||
|
list.add(new LzljMapStyleTitlePane());
|
||
|
list.add(new LzljMapStyleBaseMapPane());
|
||
|
list.add(new LzljMapStylePointMapPane());
|
||
|
list.add(new LzljMapStyleHeatMapPane());
|
||
|
list.add(new LzljMapStyleToolsPane());
|
||
|
list.add(new LzljMapStyleLabelsPane());
|
||
|
list.add(new LzljMapStyleTipsPane());
|
||
|
list.add(new LzljMapStyleOtherPane());
|
||
|
return list;
|
||
|
}
|
||
|
}
|