Skip to main content
summaryrefslogtreecommitdiffstats
blob: 854e87d1ca28b1a68107679338309203daf2603b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*****************************************************************************
 * Copyright (c) 2004 IBM Corporation and others. All rights reserved. This
 * program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and
 * is available at http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: IBM Corporation - initial API and implementation
 ****************************************************************************/
package org.eclipse.wst.css.ui.contentassist;



import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.eclipse.jface.text.contentassist.CompletionProposal;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.wst.css.core.document.ICSSMediaRule;
import org.eclipse.wst.css.core.document.ICSSNode;
import org.eclipse.wst.css.core.document.ICSSPageRule;
import org.eclipse.wst.css.core.document.ICSSPrimitiveValue;
import org.eclipse.wst.css.core.document.ICSSStyleDeclItem;
import org.eclipse.wst.css.core.document.ICSSStyleDeclaration;
import org.eclipse.wst.css.core.document.ICSSStyleRule;
import org.eclipse.wst.css.core.document.ICSSStyleSheet;
import org.eclipse.wst.css.core.parser.CSSRegionContexts;
import org.w3c.dom.css.CSSFontFaceRule;

class CSSProposalArranger {

	private List fProposals = new ArrayList();
	private CSSContentAssistContext fContext = null;

	/**
	 * CSSProposalArranger constructor comment.
	 */
	private CSSProposalArranger() {
		super();
	}

	/**
	 * CSSProposalArranger constructor comment.
	 */
	CSSProposalArranger(int documentPosition, ICSSNode node, int documentOffset, char quote) {
		super();
		fContext = new CSSContentAssistContext(documentPosition, node, documentOffset, quote);
	}

	/**
	 *  
	 */
	void buildProposals() {
		fProposals.clear();

		/*
		 * String text; ICompletionProposal item; text = "---- Test
		 * Information ----"; item = new CompletionProposal("",
		 * fContext.getReplaceBegin(), 0, 0, null, text, null, null);
		 * fProposals.add(item);
		 * 
		 * text = "Target: \"" + fContext.getRegionText() + "\"";
		 * 
		 * item = new CompletionProposal("", fContext.getReplaceBegin(), 0, 0,
		 * null, text, null, null); fProposals.add(item);
		 * 
		 * text = fContext.getTargetNode().getClass().toString(); int
		 * lastPeriodPos = text.lastIndexOf('.'); text = "Node: " +
		 * text.substring(lastPeriodPos + 1); item = new
		 * CompletionProposal("", fContext.getReplaceBegin(), 0, 0, null,
		 * text, null, null); fProposals.add(item);
		 */

		ICSSNode targetNode = fContext.getTargetNode();
		//int targetPos = fContext.getTargetPos();
		if (targetNode instanceof ICSSStyleSheet) {
			buildProposalsForAnyRule();
		} else if ((targetNode instanceof ICSSMediaRule && fContext.isTargetPosAfterOf(CSSRegionContexts.CSS_LBRACE)) || (targetNode instanceof ICSSStyleRule && fContext.isTargetPosBeforeOf(CSSRegionContexts.CSS_LBRACE))) {
			buildProposalsForAnyRule();
			//		buildProposalsForStyleRule();
		} else if ((targetNode instanceof ICSSPageRule && fContext.isTargetPosBeforeOf(CSSRegionContexts.CSS_LBRACE))) {
			buildProposalsForPageRulePseudoClass();
		} else if ((targetNode instanceof ICSSStyleRule || targetNode instanceof CSSFontFaceRule || targetNode instanceof ICSSPageRule || targetNode instanceof ICSSStyleDeclaration) && (targetNode.getOwnerDocument() instanceof ICSSStyleDeclaration || fContext.targetFollows(CSSRegionContexts.CSS_DECLARATION_DELIMITER) || fContext.targetFollows(CSSRegionContexts.CSS_LBRACE))) {
			buildProposalsForDeclarationName();
		} else if (targetNode instanceof ICSSStyleDeclItem) {
			if (fContext.isTargetPosAfterOf(CSSRegionContexts.CSS_DECLARATION_SEPARATOR)) {
				buildProposalsForDeclarationValue();
			} else {
				buildProposalsForDeclarationName();
			}
		} else if (targetNode instanceof ICSSPrimitiveValue) {
			buildProposalsForDeclarationValue();
		}
		/*
		 * else if (targetNode instanceof ICSSPrimitiveValue || ((targetNode
		 * instanceof ICSSStyleRule || targetNode instanceof CSSFontFaceRule ||
		 * targetNode instanceof ICSSStyleDeclaration || targetNode instanceof
		 * ICSSStyleDeclItem) &&
		 * fContext.isTargetPosAfterOf(CSSRegionContexts.COLON))) {
		 * buildProposalsForDeclarationValue(); }
		 */

		// for Test
	}

	/**
	 *  
	 */
	void buildProposalsForAnyRule() {
		CSSProposalGenerator generator;
		generator = new CSSProposalGeneratorForAtmarkRule(fContext);
		fProposals.addAll(generator.getProposals());
		generator = new CSSProposalGeneratorForHTMLTag(fContext);
		fProposals.addAll(generator.getProposals());
		generator = new CSSProposalGeneratorForPseudoSelector(fContext);
		fProposals.addAll(generator.getProposals());
	}

	/**
	 *  
	 */
	void buildProposalsForDeclarationName() {
		CSSProposalGenerator generator;
		generator = new CSSProposalGeneratorForDeclarationName(fContext);
		fProposals.addAll(generator.getProposals());
	}

	/**
	 *  
	 */
	void buildProposalsForDeclarationValue() {
		CSSProposalGenerator generator;
		generator = new CSSProposalGeneratorForDeclarationValue(fContext);
		fProposals.addAll(generator.getProposals());
	}

	/**
	 *  
	 */
	void buildProposalsForPageRulePseudoClass() {
		CSSProposalGenerator generator;
		generator = new CSSProposalGeneratorForPseudoSelector(fContext);
		fProposals.addAll(generator.getProposals());
	}

	/**
	 *  
	 */
	void buildProposalsForStyleRule() {
		CSSProposalGenerator generator;
		generator = new CSSProposalGeneratorForHTMLTag(fContext);
		fProposals.addAll(generator.getProposals());
		generator = new CSSProposalGeneratorForPseudoSelector(fContext);
		fProposals.addAll(generator.getProposals());
	}

	/**
	 *  
	 */
	ICompletionProposal[] getProposals() {
		buildProposals();
		ICompletionProposal[] proposalArray = new CompletionProposal[fProposals.size()];
		Iterator iItem = fProposals.iterator();
		for (int i = 0; iItem.hasNext(); i++) {
			proposalArray[i] = (ICompletionProposal) iItem.next();
		}
		return proposalArray;
	}
}

Back to the top