Search in sources :

Example 1 with DocumentStyle

use of org.w3c.dom.stylesheets.DocumentStyle in project webtools.sourceediting by eclipse.

the class AbstractStyleSheetAdapter method styleUpdate.

/**
 * @param srcModel com.ibm.sed.css.model.interfaces.ICSSModel
 */
public void styleUpdate(ICSSModel srcModel) {
    IDOMNode node = (IDOMNode) getElement();
    if (node == null)
        return;
    IDOMModel model = node.getModel();
    if (model == null)
        return;
    XMLModelNotifier notifier = model.getModelNotifier();
    if (notifier == null)
        return;
    // before updating, all sub-models should be loaded!
    DocumentStyle document = (DocumentStyle) model.getDocument();
    StyleSheetList styles = document.getStyleSheets();
    if (styles != null) {
        int n = styles.getLength();
        ImportedCollector trav = new ImportedCollector();
        for (int i = 0; i < n; i++) {
            org.w3c.dom.stylesheets.StyleSheet sheet = styles.item(i);
            if (sheet instanceof ICSSNode)
                trav.apply((ICSSNode) sheet);
        }
    }
    // flash style changed events
    if (styleChangedNodes != null) {
        Object[] elements = styleChangedNodes.toArray();
        for (int i = 0; elements != null && i < elements.length; i++) notifyStyleChanged((Element) elements[i]);
        styleChangedNodes.clear();
    }
    // to notify GEF tree
    if (document instanceof INodeNotifier) {
        Collection adapters = ((INodeNotifier) document).getAdapters();
        if (adapters == null)
            return;
        Iterator it = adapters.iterator();
        if (it == null)
            return;
        while (it.hasNext()) {
            INodeAdapter adapter = (INodeAdapter) it.next();
            if (adapter instanceof ICSSStyleListener) {
                ((ICSSStyleListener) adapter).styleUpdate(srcModel);
            }
        }
    }
    notifier.propertyChanged(node);
}
Also used : INodeAdapter(org.eclipse.wst.sse.core.internal.provisional.INodeAdapter) ImportedCollector(org.eclipse.wst.css.core.internal.util.ImportedCollector) ICSSStyleListener(org.eclipse.wst.css.core.internal.event.ICSSStyleListener) IDOMModel(org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel) Element(org.w3c.dom.Element) XMLModelNotifier(org.eclipse.wst.xml.core.internal.document.XMLModelNotifier) ICSSNode(org.eclipse.wst.css.core.internal.provisional.document.ICSSNode) DocumentStyle(org.w3c.dom.stylesheets.DocumentStyle) StyleSheet(org.w3c.dom.stylesheets.StyleSheet) IDOMNode(org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode) Iterator(java.util.Iterator) NodeIterator(org.w3c.dom.traversal.NodeIterator) Collection(java.util.Collection) INodeNotifier(org.eclipse.wst.sse.core.internal.provisional.INodeNotifier) StyleSheetList(org.w3c.dom.stylesheets.StyleSheetList)

Example 2 with DocumentStyle

use of org.w3c.dom.stylesheets.DocumentStyle in project webtools.sourceediting by eclipse.

the class StyleTest method testModel.

public void testModel() {
    // new HTMLModelImpl();
    IDOMModel model = createHTMLModel();
    Document document = model.getDocument();
    Element style = document.createElement("STYLE");
    Text text = document.createTextNode("BODY { color : red; } P { color : green; } B { color : blue; }");
    style.appendChild(text);
    document.appendChild(style);
    printSource(model);
    printTree(model);
    DocumentStyle ds = (DocumentStyle) document;
    StyleSheetList ssl = ds.getStyleSheets();
    if (ssl.getLength() > 0) {
        CSSStyleSheet ss = (CSSStyleSheet) ssl.item(0);
        ss.deleteRule(1);
    }
    printSource(model);
    printTree(model);
    LinkStyle ls = (LinkStyle) style;
    CSSStyleSheet ss2 = (CSSStyleSheet) ls.getSheet();
    if (ss2 != null) {
        ss2.deleteRule(0);
    }
    printSource(model);
    printTree(model);
    saveAndCompareTestResults();
}
Also used : IDOMModel(org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel) Element(org.w3c.dom.Element) CSSStyleSheet(org.w3c.dom.css.CSSStyleSheet) Text(org.w3c.dom.Text) Document(org.w3c.dom.Document) DocumentStyle(org.w3c.dom.stylesheets.DocumentStyle) StyleSheetList(org.w3c.dom.stylesheets.StyleSheetList) LinkStyle(org.w3c.dom.stylesheets.LinkStyle)

Aggregations

IDOMModel (org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel)2 Element (org.w3c.dom.Element)2 DocumentStyle (org.w3c.dom.stylesheets.DocumentStyle)2 StyleSheetList (org.w3c.dom.stylesheets.StyleSheetList)2 Collection (java.util.Collection)1 Iterator (java.util.Iterator)1 ICSSStyleListener (org.eclipse.wst.css.core.internal.event.ICSSStyleListener)1 ICSSNode (org.eclipse.wst.css.core.internal.provisional.document.ICSSNode)1 ImportedCollector (org.eclipse.wst.css.core.internal.util.ImportedCollector)1 INodeAdapter (org.eclipse.wst.sse.core.internal.provisional.INodeAdapter)1 INodeNotifier (org.eclipse.wst.sse.core.internal.provisional.INodeNotifier)1 XMLModelNotifier (org.eclipse.wst.xml.core.internal.document.XMLModelNotifier)1 IDOMNode (org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode)1 Document (org.w3c.dom.Document)1 Text (org.w3c.dom.Text)1 CSSStyleSheet (org.w3c.dom.css.CSSStyleSheet)1 LinkStyle (org.w3c.dom.stylesheets.LinkStyle)1 StyleSheet (org.w3c.dom.stylesheets.StyleSheet)1 NodeIterator (org.w3c.dom.traversal.NodeIterator)1