/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package feuille.karaoke.xfxintegration;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.ImageIcon;
/**
*
* @author The Wingate 2940
*/
public class FontScaleY extends OIntegration {
Params value;
public FontScaleY(){
name = lang.getValueOf("popm_fscy")!=null ? lang.getValueOf("popm_fscy") : "Font scale on Y";
String p1 = lang.getValueOf("xfxparam_19")!=null ? lang.getValueOf("xfxparam_19") : "Percent";
value = new Params(p1, "100", false); paramsList.add(value);
}
@Override
public String getName() {
return name;
}
@Override
public ImageIcon getIcon() {
ImageIcon ii = new ImageIcon(getClass().getResource("20px-Crystal_Clear_app_ksame2.png"));
return ii;
}
@Override
public void init() {
Pattern p = Pattern.compile("fscy(.+)");
Matcher m = p.matcher(commands);
if(m.matches()){
String x = m.group(1);
value.setParameter(x); paramsList.set(0, value);
}
}
@Override
public void update() {
value = paramsList.get(0);
String s = (String)value.getParameter();
commands = "\\fscy"+s;
}
}