/* Copyright 2008-2010 Gephi Authors : Jeremy Subtil <jeremy.subtil@gephi.org> Website : http://www.gephi.org This file is part of Gephi. Gephi is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Gephi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Gephi. If not, see <http://www.gnu.org/licenses/>. */ package org.gephi.preview.propertyeditors; import java.beans.PropertyEditorSupport; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.gephi.preview.api.Colorizer; import org.gephi.preview.api.ColorizerFactory; import org.openide.util.Lookup; /** * * @author jeremy */ public abstract class AbstractColorizerPropertyEditor extends PropertyEditorSupport { private final ColorizerFactory colorizerFactory = Lookup.getDefault().lookup(ColorizerFactory.class); @Override public String getAsText() { Colorizer c = (Colorizer) getValue(); return c.toString(); } @Override public void setAsText(String s) { if (supportsCustomColorMode() && colorizerFactory.matchCustomColorMode(s)) { Pattern p = Pattern.compile("\\w+\\s*\\[\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\]"); Matcher m = p.matcher(s); if (m.lookingAt()) { int r = Integer.valueOf(m.group(1)); int g = Integer.valueOf(m.group(2)); int b = Integer.valueOf(m.group(3)); setValue(colorizerFactory.createCustomColorMode(r, g, b)); } } else if (supportsNodeOriginalColorMode() && colorizerFactory.matchNodeOriginalColorMode(s)) { setValue(colorizerFactory.createNodeOriginalColorMode()); } else if (supportsParentColorMode() && colorizerFactory.matchParentColorMode(s)) { setValue(colorizerFactory.createParentColorMode()); } else if (supportsEdgeB1ColorMode() && colorizerFactory.matchEdgeB1ColorMode(s)) { setValue(colorizerFactory.createEdgeB1ColorMode()); } else if (supportsEdgeB2ColorMode() && colorizerFactory.matchEdgeB2ColorMode(s)) { setValue(colorizerFactory.createEdgeB2ColorMode()); } else if (supportsEdgeBothBColorMode() && colorizerFactory.matchEdgeBothBColorMode(s)) { setValue(colorizerFactory.createEdgeBothBColorMode()); } else if(supportEdgeOriginalColorMode() && colorizerFactory.matchEdgeOriginalColorMode(s)) { setValue(colorizerFactory.createEdgeOriginalColorMode()); } } public boolean supportsCustomColorMode() { return false; } public boolean supportsNodeOriginalColorMode() { return false; } public boolean supportsParentColorMode() { return false; } public boolean supportsEdgeB1ColorMode() { return false; } public boolean supportsEdgeB2ColorMode() { return false; } public boolean supportsEdgeBothBColorMode() { return false; } public boolean supportEdgeOriginalColorMode() { return false; } @Override public boolean supportsCustomEditor() { return true; } public ColorizerFactory getColorizerFactory() { return colorizerFactory; } }