X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms.ui%2Fsrc%2Forg%2Fargeo%2Fcms%2Fui%2Fwidgets%2FTabbedArea.java;h=8a021f1de9ca3586cbcc7760298f417701366ad8;hb=11c9710b1d2456c8304a5841d775af008a794431;hp=ab40127d6902d93a3753d6b368857bab6d0f87c4;hpb=0ef153a6845b8d51d7fea181a19aaae80e183396;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms.ui/src/org/argeo/cms/ui/widgets/TabbedArea.java b/org.argeo.cms.ui/src/org/argeo/cms/ui/widgets/TabbedArea.java index ab40127d6..8a021f1de 100644 --- a/org.argeo.cms.ui/src/org/argeo/cms/ui/widgets/TabbedArea.java +++ b/org.argeo.cms.ui/src/org/argeo/cms/ui/widgets/TabbedArea.java @@ -37,27 +37,37 @@ public class TabbedArea extends Composite { private String tabStyle; private String tabSelectedStyle; + private String bodyStyle; private Image closeIcon; public TabbedArea(Composite parent, int style) { super(parent, style); + CmsUiUtils.style(parent, bodyStyle); setLayout(CmsUiUtils.noSpaceGridLayout()); // TODO manage tabs at bottom or sides headers = new Composite(this, SWT.NONE); headers.setLayoutData(CmsUiUtils.fillWidth()); + // CmsUiUtils.style(headers, bodyStyle); body = new Composite(this, SWT.NONE); body.setLayoutData(CmsUiUtils.fillAll()); - body.setLayout(new FormLayout()); emptyState(); } protected void refreshTabHeaders() { + // TODO deal with initialisation better +// CmsUiUtils.style(body, bodyStyle); + +// int tabCount = sections.size() > 0 ?(sections.size()>1?sections.size()+1:1) : 1; int tabCount = sections.size() > 0 ? sections.size() : 1; for (Control tab : headers.getChildren()) tab.dispose(); + +// GridLayout headersGridLayout = new GridLayout(tabCount, true); +// headersGridLayout.marginHeight=0; +// headers.setLayout(headersGridLayout); headers.setLayout(CmsUiUtils.noSpaceGridLayout(new GridLayout(tabCount, true))); if (sections.size() == 0) { @@ -77,6 +87,7 @@ public class TabbedArea extends Composite { CmsUiUtils.style(sectionHeader, selected ? tabSelectedStyle : tabStyle); int headerColumns = 2; sectionHeader.setLayout(new GridLayout(headerColumns, false)); + sectionHeader.setLayout(CmsUiUtils.noSpaceGridLayout(headerColumns)); Button title = new Button(sectionHeader, SWT.FLAT); CmsUiUtils.style(title, selected ? tabSelectedStyle : tabStyle); title.setLayoutData(CmsUiUtils.fillWidth()); @@ -84,17 +95,28 @@ public class TabbedArea extends Composite { Node node = section.getNode(); title.setText(Jcr.getTitle(node)); ToolBar toolBar = new ToolBar(sectionHeader, SWT.NONE); - CmsUiUtils.style(toolBar, selected ? tabSelectedStyle : tabStyle); +// CmsUiUtils.style(toolBar, selected ? tabSelectedStyle : tabStyle); ToolItem closeItem = new ToolItem(toolBar, SWT.FLAT); if (closeIcon != null) closeItem.setImage(closeIcon); else closeItem.setText("X"); + CmsUiUtils.style(closeItem, selected ? tabSelectedStyle : tabStyle); closeItem.addSelectionListener((Selected) (e) -> closeTab(section)); } + +// if(sections.size()>1) +// { +// ToolBar toolBar = new ToolBar(headers, SWT.NONE); +// CmsUiUtils.style(toolBar, tabStyle); +// ToolItem closeAllItem = new ToolItem(toolBar, SWT.FLAT); +// closeAllItem.setText("X"); +// } } public void view(CmsUiProvider uiProvider, Node context) { + if (body.isDisposed()) + return; int index = tabIndex(context); if (index >= 0) { showTab(index); @@ -112,7 +134,7 @@ public class TabbedArea extends Composite { } currentUiProvider = uiProvider; section.setNode(context); - section.setLayoutData(CmsUiUtils.coversAll()); + section.setLayoutData(CmsUiUtils.coverAll()); build(section, uiProvider, context); if (sections.size() == 0) sections.add(section); @@ -139,7 +161,7 @@ public class TabbedArea extends Composite { int currentIndex = sections.indexOf(currentSection); Section previousSection = new Section(body, SWT.NONE, context); build(previousSection, previousUiProvider, previousNode); - previousSection.setLayoutData(CmsUiUtils.coversAll()); + previousSection.setLayoutData(CmsUiUtils.coverAll()); // sections.remove(currentSection); sections.add(currentIndex + 1, previousSection); // sections.add(currentSection); @@ -161,6 +183,7 @@ public class TabbedArea extends Composite { protected void build(Section section, CmsUiProvider uiProvider, Node context) { for (Control child : section.getChildren()) child.dispose(); + CmsUiUtils.style(section, bodyStyle); section.setNode(context); uiProvider.createUiPart(section, context); @@ -211,6 +234,10 @@ public class TabbedArea extends Composite { this.tabSelectedStyle = tabSelectedStyle; } + public void setBodyStyle(String bodyStyle) { + this.bodyStyle = bodyStyle; + } + public void setCloseIcon(Image closeIcon) { this.closeIcon = closeIcon; }