![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.theme.gray.client.tabs.GrayTabPanelAppearance Maven / Gradle / Ivy
/**
* Sencha GXT 3.1.0 - Sencha for GWT
* Copyright(c) 2007-2014, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.sencha.gxt.theme.gray.client.tabs;
import static com.google.gwt.resources.client.ImageResource.RepeatStyle.Both;
import static com.google.gwt.resources.client.ImageResource.RepeatStyle.Horizontal;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.resources.client.ImageResource.ImageOptions;
import com.sencha.gxt.theme.base.client.tabs.TabPanelBaseAppearance;
public class GrayTabPanelAppearance extends TabPanelBaseAppearance {
public interface GrayTabPanelResources extends TabPanelResources, ClientBundle {
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource bottomInactiveLeftBackground();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource bottomInactiveRightBackground();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource bottomLeftBackground();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource bottomRightBackground();
ImageResource scrollerLeft();
ImageResource scrollerLeftOver();
ImageResource scrollerRight();
ImageResource scrollerRightOver();
@Source({"com/sencha/gxt/theme/base/client/tabs/TabPanel.css", "GrayTabPanel.css"})
GrayTabPanelStyle style();
@ImageOptions(repeatStyle = Horizontal)
ImageResource tabCenter();
@ImageOptions(repeatStyle = Horizontal)
ImageResource tabCenterActive();
@ImageOptions(repeatStyle = Horizontal)
ImageResource tabCenterOver();
ImageResource tabClose();
ImageResource tabLeft();
ImageResource tabLeftActive();
ImageResource tabLeftOver();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource tabRight();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource tabRightActive();
// Prevent sprite sheet inclusion to allow background positioning in IE 6-7
@ImageOptions(repeatStyle = Both)
ImageResource tabRightOver();
@ImageOptions(repeatStyle = Horizontal)
ImageResource tabStripBackground();
@ImageOptions(repeatStyle = Horizontal)
ImageResource tabStripBottomBackground();
}
public interface GrayTabPanelStyle extends TabPanelStyle {
}
public GrayTabPanelAppearance() {
this(GWT. create(GrayTabPanelResources.class), GWT. create(Template.class),
GWT. create(ItemTemplate.class));
}
public GrayTabPanelAppearance(GrayTabPanelResources resources, Template template, ItemTemplate itemTemplate) {
super(resources, template, itemTemplate);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy