|
|
@ -12,7 +12,7 @@ public class FToolBar { |
|
|
|
private Background background = null; |
|
|
|
private Background background = null; |
|
|
|
private boolean isDefault = true; |
|
|
|
private boolean isDefault = true; |
|
|
|
|
|
|
|
|
|
|
|
private boolean isBgColorLight = true; |
|
|
|
private boolean buttonBgColorLight = true; |
|
|
|
public List<ToolBarButton> getButtonlist() { |
|
|
|
public List<ToolBarButton> getButtonlist() { |
|
|
|
return buttonlist; |
|
|
|
return buttonlist; |
|
|
|
} |
|
|
|
} |
|
|
@ -54,11 +54,11 @@ public class FToolBar { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public boolean isBgColorLight() { |
|
|
|
public boolean isBgColorLight() { |
|
|
|
return isBgColorLight; |
|
|
|
return buttonBgColorLight; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setBgColorLight(boolean bgColorLight) { |
|
|
|
public void setBgColorLight(boolean bgColorLight) { |
|
|
|
this.isBgColorLight = bgColorLight; |
|
|
|
this.buttonBgColorLight = bgColorLight; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public ToolBar getToolBar() { |
|
|
|
public ToolBar getToolBar() { |
|
|
@ -69,7 +69,7 @@ public class FToolBar { |
|
|
|
ToolBar toolBar = new ToolBar(n); |
|
|
|
ToolBar toolBar = new ToolBar(n); |
|
|
|
toolBar.setBackground(this.background); |
|
|
|
toolBar.setBackground(this.background); |
|
|
|
toolBar.setDefault(this.isDefault); |
|
|
|
toolBar.setDefault(this.isDefault); |
|
|
|
toolBar.setButtonBgColorLight(this.isBgColorLight); |
|
|
|
toolBar.setButtonBgColorLight(this.buttonBgColorLight); |
|
|
|
return toolBar; |
|
|
|
return toolBar; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |