Package org.rstudio.studio.client.common

Source Code of org.rstudio.studio.client.common.ImageMenuItem

package org.rstudio.studio.client.common;

import org.rstudio.core.client.command.AppCommand;

import com.google.gwt.core.client.Scheduler.ScheduledCommand;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.user.client.ui.MenuItem;

public class ImageMenuItem
{
   public static MenuItem create(ImageResource res,
                                 String text,
                                 ScheduledCommand command,
                                 Integer iconOffsetY)
   {
     
      return new MenuItem(AppCommand.formatMenuLabel(res, text, null,
                                                     iconOffsetY),
                          true,
                          command);
   }
}
TOP

Related Classes of org.rstudio.studio.client.common.ImageMenuItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.