Fixed Ribbon and pom

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@84498 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-10-28 15:29:32 +00:00
parent e40fec6316
commit 0e18e48315
8 changed files with 17 additions and 38 deletions

11
pom.xml
View File

@ -211,14 +211,9 @@
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> <version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency> </dependency>
<!-- TD Service Mock -->
<dependency>
<groupId>org.gcube.data.analysis.tabulardata</groupId>
<artifactId>service-client-mock</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency>
<!-- Home Library --> <!-- Home Library
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>home-library-jcr</artifactId> <artifactId>home-library-jcr</artifactId>
@ -227,7 +222,7 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>home-library</artifactId> <artifactId>home-library</artifactId>
</dependency> </dependency>
-->
<!-- LOGGING --> <!-- LOGGING -->
<dependency> <dependency>

View File

@ -149,21 +149,6 @@ public class TabularDataPortlet implements EntryPoint {
controller.setFunctionalityPanel(functionalityPanel); controller.setFunctionalityPanel(functionalityPanel);
controller.setEastData(eastData); controller.setEastData(eastData);
// Main
// SimpleContainer mainPanel = new SimpleContainer();
// mainPanelLayout.clearSizeCache();
// mainPanelLayout.forceLayout();
/*
* mainPanel.add(toolBarPanel);
* Log.info("toolBarPanel height: "+toolBarPanel.getOffsetHeight());
* Log.info("toolBarPanel width: "+toolBarPanel.getOffsetWidth());
*
* // updateSize(); try { RootPanel.get(JSP_TAG_ID).add(mainPanel); }
* catch (Exception e) { e.printStackTrace();
* Log.error("Tabular Data Portlet: error " + e.getLocalizedMessage());
* }
*/
bind(mainPanelLayout); bind(mainPanelLayout);
} }
@ -177,6 +162,7 @@ public class TabularDataPortlet implements EntryPoint {
+ " not found, starting in dev mode"); + " not found, starting in dev mode");
Viewport viewport = new Viewport(); Viewport viewport = new Viewport();
viewport.setWidget(mainWidget); viewport.setWidget(mainWidget);
viewport.onResize();
RootPanel.get().add(viewport); RootPanel.get().add(viewport);
} else { } else {
Log.info("Application div with id " + JSP_TAG_ID Log.info("Application div with id " + JSP_TAG_ID
@ -187,14 +173,7 @@ public class TabularDataPortlet implements EntryPoint {
Log.info("Set Widget"); Log.info("Set Widget");
Log.info("getOffsetWidth(): " + viewport.getOffsetWidth()); Log.info("getOffsetWidth(): " + viewport.getOffsetWidth());
Log.info("getOffsetHeight(): " + viewport.getOffsetHeight()); Log.info("getOffsetHeight(): " + viewport.getOffsetHeight());
/*viewport.addResizeHandler(new ResizeHandler() { viewport.onResize();
@Override
public void onResize(ResizeEvent event) {
viewport.resize();
}
});*/
root.add(viewport); root.add(viewport);
Log.info("Added viewport to root"); Log.info("Added viewport to root");
} }

View File

@ -54,6 +54,7 @@ public class ChartsToolBar {
{ {
toolBar = new ToolBar(); toolBar = new ToolBar();
toolBar.setSpacing(1); toolBar.setSpacing(1);
toolBar.setEnableOverflow(false);
//Charts Group //Charts Group
ButtonGroup chartsGroup = new ButtonGroup(); ButtonGroup chartsGroup = new ButtonGroup();

View File

@ -68,7 +68,9 @@ public class FileToolBar {
protected void build() { protected void build() {
toolBar = new ToolBar(); toolBar = new ToolBar();
toolBar.setSpacing(1); toolBar.setSpacing(1);
toolBar.setEnableOverflow(false);
// File // File
ButtonGroup fileGroup = new ButtonGroup(); ButtonGroup fileGroup = new ButtonGroup();
fileGroup.setId("File"); fileGroup.setId("File");

View File

@ -62,6 +62,7 @@ public class FormulasToolBar {
{ {
toolBar = new ToolBar(); toolBar = new ToolBar();
toolBar.setSpacing(1); toolBar.setSpacing(1);
toolBar.setEnableOverflow(false);
//Table Group //Table Group

View File

@ -46,7 +46,7 @@ public class ReviewToolBar {
protected void build() { protected void build() {
toolBar = new ToolBar(); toolBar = new ToolBar();
toolBar.setSpacing(1); toolBar.setSpacing(1);
toolBar.setEnableOverflow(false);
// Validation // Validation
ButtonGroup validationGroup = new ButtonGroup(); ButtonGroup validationGroup = new ButtonGroup();

View File

@ -33,26 +33,27 @@ public class TabularDataRibbon {
ribbon.setId("Ribbon"); ribbon.setId("Ribbon");
ribbon.setHeight("106px"); ribbon.setHeight("106px");
VerticalLayoutData vldata=new VerticalLayoutData(1, -1);
fileToolBar = new FileToolBar(eventBus); fileToolBar = new FileToolBar(eventBus);
VerticalLayoutContainer con = new VerticalLayoutContainer(); VerticalLayoutContainer con = new VerticalLayoutContainer();
con.add(fileToolBar.getToolBar(), new VerticalLayoutData(1, -1)); con.add(fileToolBar.getToolBar(), vldata);
ribbon.add(con, "Home"); ribbon.add(con, "Home");
reviewToolBar = new ReviewToolBar(eventBus); reviewToolBar = new ReviewToolBar(eventBus);
con = new VerticalLayoutContainer(); con = new VerticalLayoutContainer();
con.add(reviewToolBar.getToolBar(), new VerticalLayoutData(1, -1)); con.add(reviewToolBar.getToolBar(), vldata);
ribbon.add(con, "Review"); ribbon.add(con, "Review");
formulasToolBar = new FormulasToolBar(eventBus); formulasToolBar = new FormulasToolBar(eventBus);
con = new VerticalLayoutContainer(); con = new VerticalLayoutContainer();
con.add(formulasToolBar.getToolBar(), new VerticalLayoutData(1, -1)); con.add(formulasToolBar.getToolBar(), vldata);
ribbon.add(con, "Modify"); ribbon.add(con, "Modify");
chartsToolBar = new ChartsToolBar(eventBus); chartsToolBar = new ChartsToolBar(eventBus);
con = new VerticalLayoutContainer(); con = new VerticalLayoutContainer();
con.add(chartsToolBar.getToolBar(), new VerticalLayoutData(1, -1)); con.add(chartsToolBar.getToolBar(), vldata);
ribbon.add(con, "Applications"); ribbon.add(con, "Applications");
} catch (Exception e) { } catch (Exception e) {

View File

@ -27,7 +27,7 @@
<!-- Specify the app entry point class. --> <!-- Specify the app entry point class. -->
<entry-point class='org.gcube.portlets.user.td.client.TabularDataPortlet' /> <entry-point class='org.gcube.portlets.user.td.client.TabularDataPortlet' />
<set-property name="log_DivLogger" value="ENABLED" /> <set-property name="log_DivLogger" value="DISABLED" />
<set-property name="log_ConsoleLogger" value="ENABLED" /> <set-property name="log_ConsoleLogger" value="ENABLED" />
<set-property name="log_FirebugLogger" value="ENABLED" /> <set-property name="log_FirebugLogger" value="ENABLED" />
<set-property name="log_GWTLogger" value="ENABLED" /> <set-property name="log_GWTLogger" value="ENABLED" />