/* * LineActionButtonRenderer.java * * Copyright (C) 2009-12 by RStudio, Inc. * * Unless you have received this program directly from RStudio pursuant * to the terms of a commercial license agreement with RStudio, then * this program is licensed to you under the terms of version 3 of the * GNU Affero General Public License. This program is distributed WITHOUT * ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT, * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the * AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details. * */ package org.rstudio.studio.client.workbench.views.vcs.common.diff; import com.google.gwt.core.client.GWT; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.CssResource; import com.google.gwt.resources.client.ImageResource; import com.google.gwt.resources.client.ImageResource.ImageOptions; import com.google.gwt.resources.client.ImageResource.RepeatStyle; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import org.rstudio.core.client.SafeHtmlUtil; import org.rstudio.core.client.theme.res.ThemeStyles; public class LineActionButtonRenderer { interface Resources { ImageResource buttonLeft(); @ImageOptions(repeatStyle = ImageResource.RepeatStyle.Horizontal) ImageResource buttonTile(); ImageResource buttonRight(); Styles styles(); } interface Styles extends CssResource { String button(); String left(); String center(); String right(); } interface BlueResources extends Resources, ClientBundle { @Override @Source("images/SmallBlueButtonLeft.png") ImageResource buttonLeft(); @Override @ImageOptions(repeatStyle = RepeatStyle.Horizontal) @Source("images/SmallBlueButtonTile.png") ImageResource buttonTile(); @Override @Source("images/SmallBlueButtonRight.png") ImageResource buttonRight(); @Source("LineActionButton.css") BlueStyles styles(); } interface BlueStyles extends Styles {} interface GrayResources extends Resources, ClientBundle { @Override @Source("images/SmallGrayButtonLeft.png") ImageResource buttonLeft(); @Override @ImageOptions(repeatStyle = RepeatStyle.Horizontal) @Source("images/SmallGrayButtonTile.png") ImageResource buttonTile(); @Override @Source("images/SmallGrayButtonRight.png") ImageResource buttonRight(); @Source("LineActionButton.css") GrayStyles styles(); } interface GrayStyles extends Styles {} public static LineActionButtonRenderer createBlue() { return new LineActionButtonRenderer(GWT.<Resources>create(BlueResources.class)); } public static LineActionButtonRenderer createGray() { return new LineActionButtonRenderer(GWT.<Resources>create(GrayResources.class)); } protected LineActionButtonRenderer(Resources resources) { resources_ = resources; resources_.styles().ensureInjected(); } public void render(SafeHtmlBuilder builder, String text, String action) { { builder.append(SafeHtmlUtil.createOpenTag( "div", "class", resources_.styles().button() + " " + ThemeStyles.INSTANCE.handCursor(), "data-action", action)); { builder.append(SafeHtmlUtil.createOpenTag( "div", "class", resources_.styles().left())); builder.appendHtmlConstant("<br/></div>"); builder.append(SafeHtmlUtil.createOpenTag( "div", "class", resources_.styles().center())); { builder.appendEscaped(text); } builder.appendHtmlConstant("</div>"); builder.append(SafeHtmlUtil.createOpenTag( "div", "class", resources_.styles().right())); builder.appendHtmlConstant("<br/></div>"); } builder.appendHtmlConstant("</div>"); } } private final Resources resources_; }