com.google.gwt.resources.client.ImageResource.RepeatStyle Java Examples

The following examples show how to use com.google.gwt.resources.client.ImageResource.RepeatStyle. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/n_edit.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeNorthEdit();
 
Example #2
Source File: DesktopPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Titled background images */
@Source("popup_n_titled.png")
@ImageOptions(repeatStyle=RepeatStyle.Horizontal)
ImageResource chromeNorthTitled();
 
Example #3
Source File: DropdownPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("popup_w.png")
@ImageOptions(repeatStyle=RepeatStyle.Vertical)
ImageResource chromeWest();
 
Example #4
Source File: VerticalToolbarButtonWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("button_down_large.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical)
ImageResource buttonDown();
 
Example #5
Source File: HorizontalToolbarButtonWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("button_down_large.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource buttonDown();
 
Example #6
Source File: ToplevelToolbarWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("button_fill.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource fillImage();
 
Example #7
Source File: DesktopPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("popup_s.png")
@ImageOptions(repeatStyle=RepeatStyle.Horizontal)
ImageResource chromeSouth();
 
Example #8
Source File: DesktopPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("popup_e.png")
@ImageOptions(repeatStyle=RepeatStyle.Vertical, flipRtl=true)
ImageResource chromeEast();
 
Example #9
Source File: DesktopPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Default background images */
@Source("popup_n.png")
@ImageOptions(repeatStyle=RepeatStyle.Horizontal)
ImageResource chromeNorth();
 
Example #10
Source File: DropdownPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Titled background images */
@Source("popup_n_titled.png")
@ImageOptions(repeatStyle=RepeatStyle.Horizontal)
ImageResource chromeNorthTitled();
 
Example #11
Source File: DesktopPopupChrome.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("popup_w.png")
@ImageOptions(repeatStyle=RepeatStyle.Vertical, flipRtl=true)
ImageResource chromeWest();
 
Example #12
Source File: TopConversationViewBuilder.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
@Source("toolbar_empty.png")
ImageResource emptyToolbar();
 
Example #13
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/s_edit.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeSouthEdit();
 
Example #14
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/e_edit.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeEastEdit();
 
Example #15
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/w_edit.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeWestEdit();
 
Example #16
Source File: TextButton.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("button_middle.png")
@ImageOptions(repeatStyle=RepeatStyle.Horizontal)
ImageResource regularMiddleImage();
 
Example #17
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/s.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeSouth();
 
Example #18
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/e.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeEast();
 
Example #19
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/w.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeWest();
 
Example #20
Source File: FocusFrame.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("frame/n.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeNorth();
 
Example #21
Source File: GadgetWidgetUi.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("meta_mid.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource metaMid();
 
Example #22
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("thumb-c-2.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeCenter();
 
Example #23
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("thumb-w-2.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeWest();
 
Example #24
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("thumb-s-2.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeSouth();
 
Example #25
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("thumb-e-2.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical, flipRtl = true)
ImageResource chromeEast();
 
Example #26
Source File: ImageThumbnailWidget.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
/** Thumbnail images */
@Source("thumb-n-2.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeNorth();
 
Example #27
Source File: FramedPanel.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("panel_w.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical)
ImageResource chromeWest();
 
Example #28
Source File: FramedPanel.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("panel_s.png")
@ImageOptions(repeatStyle = RepeatStyle.Horizontal)
ImageResource chromeSouth();
 
Example #29
Source File: FramedPanel.java    From incubator-retired-wave with Apache License 2.0 4 votes vote down vote up
@Source("panel_e.png")
@ImageOptions(repeatStyle = RepeatStyle.Vertical)
ImageResource chromeEast();
 
Example #30
Source File: CellBrowser.java    From consulo with Apache License 2.0 4 votes vote down vote up
/**
 * The background used for open items.
 */
// Use RepeatStyle.BOTH to ensure that we do not bundle the image.
@ImageOptions(repeatStyle = RepeatStyle.Both, flipRtl = true)
ImageResource cellBrowserOpenBackground();