當前位置: 首頁>>代碼示例>>Java>>正文


Java Style.setBackgroundColor方法代碼示例

本文整理匯總了Java中com.google.gwt.dom.client.Style.setBackgroundColor方法的典型用法代碼示例。如果您正苦於以下問題:Java Style.setBackgroundColor方法的具體用法?Java Style.setBackgroundColor怎麽用?Java Style.setBackgroundColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.google.gwt.dom.client.Style的用法示例。


在下文中一共展示了Style.setBackgroundColor方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setQuasiDeleted

import com.google.gwt.dom.client.Style; //導入方法依賴的package包/類
@Override
public void setQuasiDeleted(String title, boolean isRowOwnerDeleted) {
  self.addClassName(css.deleted());
  
  // white margins are shown only if blip doesn't have a deleted row owner blip
  int marginWidthPct = isRowOwnerDeleted ? 0 : 100;
  getTopMargin().getStyle().setWidth(marginWidthPct, Style.Unit.PCT);
  getBottomMargin().getStyle().setWidth(marginWidthPct, Style.Unit.PCT);    
  
  Style metaFrameStyle = DomViewHelper.load(getMeta().getId(),
      BlipMetaViewBuilder.Components.FRAME).getStyle();
  metaFrameStyle.setBackgroundColor(DELETED_COLOR);
  metaFrameStyle.setBorderColor(DELETED_COLOR);
  DomUtil.findFirstChildElement(meta, Type.BLIP_INDICATOR).getStyle().setBorderColor(DELETED_COLOR);    

  self.setTitle(title);
  
  // Unset cursor shape for children
  setAutoCursor(DomUtil.findFirstChildElement(getMeta(), Type.BLIP_CONTINUATION_BAR));
  Element timeAndMenu = DomUtil.findFirstChildElement(getMeta(), Type.META_BAR, Type.TIME_AND_MENU);
  setAutoCursor(timeAndMenu);
  setAutoCursor(DomUtil.findFirstChildElement(timeAndMenu, Type.BLIP_TIME));
  Element menuButton = DomUtil.findFirstChildElement(timeAndMenu, Type.BLIP_MENU_BUTTON);
  setAutoCursor(menuButton);

  // Remove arrow from menu button
  menuButton.getStyle().setColor(DELETED_COLOR);

  DomUtil.setQuasiDeleted(self);
}
 
開發者ID:jorkey,項目名稱:Wiab.pro,代碼行數:31,代碼來源:BlipViewDomImpl.java

示例2: initSearchPopUp

import com.google.gwt.dom.client.Style; //導入方法依賴的package包/類
private void initSearchPopUp() {
  this.searchPopUp = new SearchPopUp();
  Style style = this.searchPopUp.getElement().getStyle();

  style.setBackgroundColor("grey");
  style.setBorderStyle(Style.BorderStyle.SOLID);
  style.setBorderColor("#dbdbdb");
  style.setBorderWidth(1, Style.Unit.PX);
  style.setPadding(2, Style.Unit.PX);
  style.setPosition(Style.Position.FIXED);
  style.setTop(100, Style.Unit.PX);
  style.setLeft(20, Style.Unit.PX);
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:14,代碼來源:SpeedSearch.java

示例3: setMessage

import com.google.gwt.dom.client.Style; //導入方法依賴的package包/類
public void setMessage(String msg, String bkgColor, String txtColor) {

    label_.setText(msg);

    Style labelStyle = label_.getElement().getStyle();
    labelStyle.setFontSize(1.6, Style.Unit.EM);
    labelStyle.setBackgroundColor(bkgColor);
    labelStyle.setColor(txtColor);
    labelStyle.setPadding(5, Style.Unit.PX);
  }
 
開發者ID:MNCC,項目名稱:minus,代碼行數:11,代碼來源:Indicator.java

示例4: setLine

import com.google.gwt.dom.client.Style; //導入方法依賴的package包/類
private static void setLine(final Style style,
                            final int width,
                            final int top,
                            final int height,
                            final String color) {
    style.setPosition(Position.ABSOLUTE);
    style.setTop(top,
                 PX);
    style.setHeight(height,
                    PX);
    style.setWidth(width,
                   PX);
    style.setBackgroundColor(color);
    style.setZIndex(Integer.MAX_VALUE);
}
 
開發者ID:kiegroup,項目名稱:appformer,代碼行數:16,代碼來源:ResizableMovableHeader.java


注:本文中的com.google.gwt.dom.client.Style.setBackgroundColor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。