当前位置: 首页>>代码示例>>Java>>正文


Java SimpleAttributeSet.removeAttribute方法代码示例

本文整理汇总了Java中javax.swing.text.SimpleAttributeSet.removeAttribute方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleAttributeSet.removeAttribute方法的具体用法?Java SimpleAttributeSet.removeAttribute怎么用?Java SimpleAttributeSet.removeAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.swing.text.SimpleAttributeSet的用法示例。


在下文中一共展示了SimpleAttributeSet.removeAttribute方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setViewData

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
/**
    * Sets data optained from the View
    */
   public void setViewData(View v) {
myView = v;
doc = (HTMLDocument) myView.getDocument();
base = doc.getBase();

// Set the current font information in the local text attributes
Font font = getFont();
textAttribs = new SimpleAttributeSet();
textAttribs.removeAttribute(StyleConstants.FontSize);
textAttribs.removeAttribute(StyleConstants.Bold);
textAttribs.removeAttribute(StyleConstants.Italic);
textAttribs.addAttribute(StyleConstants.FontFamily,
			 font.getName());
textAttribs.addAttribute(StyleConstants.FontSize,
			 new Integer(font.getSize()));
textAttribs.addAttribute(StyleConstants.Bold,
			 Boolean.valueOf(font.isBold()));
textAttribs.addAttribute(StyleConstants.Italic,
			 Boolean.valueOf(font.isItalic()));
   }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:24,代码来源:BrowserDisplayer.java

示例2: updateData

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
private void updateData () {
    int index = lCategories.getSelectedIndex();
    if (index < 0) return;
    
    List<AttributeSet> categories = getCategories();
    AttributeSet category = categories.get(lCategories.getSelectedIndex());
    SimpleAttributeSet c = new SimpleAttributeSet(category);
    
    Color color = cbBackground.getSelectedColor();
    if (color != null) {
        c.addAttribute(StyleConstants.Background, color);
    } else {
        c.removeAttribute(StyleConstants.Background);
    }
    
    categories.set(index, c);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:18,代码来源:DiffColorsPanel.java

示例3: setColor

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
public void setColor(int index, Color color) {
    if (color == null) return;
    AttributeSet attr = colorAttributes.get(index);
    SimpleAttributeSet c = new SimpleAttributeSet(attr);
    if (attr != null) {
        c.addAttribute(StyleConstants.Background, color);
    } else {
        c.removeAttribute(StyleConstants.Background);
    }
    colorAttributes.set(index, c);
    Color[] savedColor = colors.get((String)c.getAttribute(StyleConstants.NameAttribute));
    savedColor[0] = color;
    fireChanged();
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:15,代码来源:AnnotationColorsPanel.java

示例4: updateData

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
private void updateData () {
    List<AttributeSet> annotations = getAnnotations(currentScheme);
    int index = lCategories.getSelectedIndex();
    SimpleAttributeSet c = new SimpleAttributeSet(annotations.get(index));
    
    Color color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbBackground );
    if (color != null) {
        c.addAttribute(StyleConstants.Background, color);
    } else {
        c.removeAttribute(StyleConstants.Background);
    }
    
    color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbForeground );
    if (color != null) {
        c.addAttribute(StyleConstants.Foreground, color);
    } else {
        c.removeAttribute(StyleConstants.Foreground);
    }
    
    Color wave = null;
    if (cbEffects.getSelectedIndex () == 1)
         wave = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbEffectColor );
    if (wave != null) {
        c.addAttribute(EditorStyleConstants.WaveUnderlineColor, wave);
    } else {
        c.removeAttribute(EditorStyleConstants.WaveUnderlineColor);
    }
    
    annotations.set(index, c);
    
    toBeSaved.add(currentScheme);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:33,代码来源:AnnotationsPanel.java

示例5: updateData

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
/**
 * Called on user change.
 * Updates data structures and preview panel.
 */
private void updateData () {
    int i = lCategories.getSelectedIndex ();
    if (i < 0) return;
    
    AttributeSet category = getCurrentCategory ();
    Color underline = null, 
          wave = null, 
          strikethrough = null;
    if (cbEffects.getSelectedIndex () == 1)
        underline = ((ColorComboBox)cbEffectColor).getSelectedColor();
    if (cbEffects.getSelectedIndex () == 2)
        wave = ((ColorComboBox)cbEffectColor).getSelectedColor();
    if (cbEffects.getSelectedIndex () == 3)
        strikethrough = ((ColorComboBox)cbEffectColor).getSelectedColor();
    
    SimpleAttributeSet c = category != null ? new SimpleAttributeSet(category) : new SimpleAttributeSet();
    
    Color color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbBackground );
    if (color != null) {
        c.addAttribute(StyleConstants.Background, color);
    } else {
        c.removeAttribute(StyleConstants.Background);
    }
    
    color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbForeground );
    if (color != null) {
        c.addAttribute(StyleConstants.Foreground, color);
    } else {
        c.removeAttribute(StyleConstants.Foreground);
    }
    
    if (underline != null) {
        c.addAttribute(StyleConstants.Underline, underline);
    } else {
        c.removeAttribute(StyleConstants.Underline);
    }
    
    if (strikethrough != null) {
        c.addAttribute(StyleConstants.StrikeThrough, strikethrough);
    } else {
        c.removeAttribute(StyleConstants.StrikeThrough);
    }
    
    if (wave != null) {
        c.addAttribute(EditorStyleConstants.WaveUnderlineColor, wave);
    } else {
        c.removeAttribute(EditorStyleConstants.WaveUnderlineColor);
    }
    
    replaceCurrrentCategory(c);
    setToBeSaved(currentProfile, currentLanguage);
    updatePreview();
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:58,代码来源:SyntaxColoringPanel.java

示例6: modifyFont

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
private AttributeSet modifyFont (AttributeSet category, Font f) {
    String fontName = f.getName ();
    Integer fontSize = new Integer (f.getSize ());
    Boolean bold = Boolean.valueOf (f.isBold ());
    Boolean italic = Boolean.valueOf (f.isItalic ());
    boolean isDefault = "default".equals (
        category.getAttribute (StyleConstants.NameAttribute)
    );
    if (fontName.equals (
        getDefault (currentLanguage, category, StyleConstants.FontFamily)
    ) && !isDefault)
        fontName = null;
    if (fontSize.equals (
        getDefault (currentLanguage, category, StyleConstants.FontSize)
    ) && !isDefault)
        fontSize = null;
    if (bold.equals (getDefault (currentLanguage, category, StyleConstants.Bold))
    )
        bold = null;
    else
    if (bold.equals (Boolean.FALSE) &&
        getDefault (currentLanguage, category, StyleConstants.Bold) == null
    )
        bold = null;
    if (italic.equals (getDefault (currentLanguage, category, StyleConstants.Italic))
    )
        italic = null;
    else
    if (italic.equals (Boolean.FALSE) &&
        getDefault (currentLanguage, category, StyleConstants.Italic) == null
    )
        italic = null;
    SimpleAttributeSet c = new SimpleAttributeSet (category);
    if (fontName != null)
        c.addAttribute (
            StyleConstants.FontFamily,
            fontName
        );
    else
        c.removeAttribute (StyleConstants.FontFamily);
    if (fontSize != null)
        c.addAttribute (
            StyleConstants.FontSize,
            fontSize
        );
    else
        c.removeAttribute (StyleConstants.FontSize);
    if (bold != null)
        c.addAttribute (
            StyleConstants.Bold,
            bold
        );
    else
        c.removeAttribute (StyleConstants.Bold);
    if (italic != null)
        c.addAttribute (
            StyleConstants.Italic,
            italic
        );
    else
        c.removeAttribute (StyleConstants.Italic);
    
    return c;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:65,代码来源:SyntaxColoringPanel.java

示例7: processAnnotations

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
private List<AttributeSet> processAnnotations(Map<String, AttributeSet> annos, boolean isdefault) {
    List<AttributeSet> annotations = new ArrayList<AttributeSet>();
    for(Iterator it = AnnotationTypes.getTypes().getAnnotationTypeNames(); it.hasNext(); ) {
        String name = (String) it.next ();
        
        AnnotationType annotationType = AnnotationTypes.getTypes().getType(name);
        if (!annotationType.isVisible()) {
            continue;
        }

        String description = annotationType.getDescription();
        if (description == null) {
            continue;
        }
        
        SimpleAttributeSet category = new SimpleAttributeSet();
        category.addAttribute(EditorStyleConstants.DisplayName, description);
        category.addAttribute(StyleConstants.NameAttribute, annotationType.getName());
        
        URL iconURL = annotationType.getGlyph ();
        Image image = null;
        if (iconURL.getProtocol ().equals ("nbresloc")) { // NOI18N
            image = ImageUtilities.loadImage(iconURL.getPath().substring(1));
        } else {
            image = Toolkit.getDefaultToolkit ().getImage (iconURL);
        }
        if (image != null) {
            category.addAttribute("icon", new ImageIcon(image)); //NOI18N
        }
        
        Color bgColor = annotationType.getHighlight();
        if (annotationType.isUseHighlightColor() && bgColor != null) {
            category.addAttribute(StyleConstants.Background, bgColor);
        }
        
        Color fgColor = annotationType.getForegroundColor();
        if (!annotationType.isInheritForegroundColor() && fgColor != null) {
            category.addAttribute(StyleConstants.Foreground, fgColor);
        }

        Color underColor = annotationType.getWaveUnderlineColor();
        if (annotationType.isUseWaveUnderlineColor() && underColor != null) {
            category.addAttribute(EditorStyleConstants.WaveUnderlineColor, underColor);
        }
        
        category.addAttribute("annotationType", annotationType); //NOI18N
        if (annos.containsKey(name)) {
            if (isdefault) {
                category.removeAttribute(StyleConstants.Background);
                category.removeAttribute(StyleConstants.Foreground);
                category.removeAttribute(EditorStyleConstants.WaveUnderlineColor);
            }
            AttributeSet as = annos.get(name);
            category.addAttributes(as);
            
        }

        annotations.add(category);
    }
    return annotations;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:62,代码来源:ColorModel.java

示例8: updateData

import javax.swing.text.SimpleAttributeSet; //导入方法依赖的package包/类
private void updateData () {
    int index = lCategories.getSelectedIndex();
    if (index < 0) return;
    
    List<AttributeSet> categories = getCategories(currentProfile);
    AttributeSet category = categories.get(lCategories.getSelectedIndex());
    SimpleAttributeSet c = new SimpleAttributeSet(category);
    
    Color color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbBackground );
    if (color != null) {
        c.addAttribute(StyleConstants.Background, color);
    } else {
        c.removeAttribute(StyleConstants.Background);
    }
    
    color = ColorComboBoxSupport.getSelectedColor( (ColorComboBox)cbForeground );
    if (color != null) {
        c.addAttribute(StyleConstants.Foreground, color);
    } else {
        c.removeAttribute(StyleConstants.Foreground);
    }

    Color underline = null,
          wave = null,
          strikethrough = null;
    if (cbEffects.getSelectedIndex () == 1)
        underline = ((ColorComboBox)cbEffectColor).getSelectedColor();
    if (cbEffects.getSelectedIndex () == 2)
        wave = ((ColorComboBox)cbEffectColor).getSelectedColor();
    if (cbEffects.getSelectedIndex () == 3)
        strikethrough = ((ColorComboBox)cbEffectColor).getSelectedColor();

    if (underline != null) {
        c.addAttribute(StyleConstants.Underline, underline);
    } else {
        c.removeAttribute(StyleConstants.Underline);
    }

    if (strikethrough != null) {
        c.addAttribute(StyleConstants.StrikeThrough, strikethrough);
    } else {
        c.removeAttribute(StyleConstants.StrikeThrough);
    }

    if (wave != null) {
        c.addAttribute(EditorStyleConstants.WaveUnderlineColor, wave);
    } else {
        c.removeAttribute(EditorStyleConstants.WaveUnderlineColor);
    }
    
    categories.set(index, c);
    toBeSaved.add(currentProfile);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:54,代码来源:HighlightingPanel.java


注:本文中的javax.swing.text.SimpleAttributeSet.removeAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。