|
|
|
@ -4,7 +4,7 @@ import java.util.ArrayList;
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
import com.fr.form.ui.ToolBar; |
|
|
|
|
import com.fr.form.ui.ToolBarButtonBgColorType; |
|
|
|
|
import com.fr.general.ColorMode; |
|
|
|
|
import com.fr.form.ui.Widget; |
|
|
|
|
import com.fr.general.Background; |
|
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ public class FToolBar {
|
|
|
|
|
private Background background = null; |
|
|
|
|
private boolean isDefault = true; |
|
|
|
|
|
|
|
|
|
private ToolBarButtonBgColorType buttonBgColorType = ToolBarButtonBgColorType.AUTO; |
|
|
|
|
private ColorMode buttonBgColorType = ColorMode.AUTO; |
|
|
|
|
public List<ToolBarButton> getButtonlist() { |
|
|
|
|
return buttonlist; |
|
|
|
|
} |
|
|
|
@ -54,11 +54,11 @@ public class FToolBar {
|
|
|
|
|
this.isDefault = isDefault; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public ToolBarButtonBgColorType getButtonBgColorType() { |
|
|
|
|
public ColorMode getButtonBgColorType() { |
|
|
|
|
return buttonBgColorType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setButtonBgColorType(ToolBarButtonBgColorType buttonBgColorType) { |
|
|
|
|
public void setButtonBgColorType(ColorMode buttonBgColorType) { |
|
|
|
|
this.buttonBgColorType = buttonBgColorType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|