Package org.jwildfire.create.tina.swing.flamepanel

Examples of org.jwildfire.create.tina.swing.flamepanel.FlamePanelControlStyle


        pPrefs.setTinaEditorGuidesGoldenRatioColor(getColorProperty(props, Prefs.KEY_TINA_EDITOR_GUIDES_COLOR_GOLDEN_RATIO, pPrefs.getTinaEditorGuidesGoldenRatioColor()));
        pPrefs.setTinaEditorGuidesLineWidth(getDoubleProperty(props, Prefs.KEY_TINA_EDITOR_GUIDES_LINE_WIDTH, pPrefs.getTinaEditorGuidesLineWidth()));
        pPrefs.setTinaMacroButtonsVertical(getBooleanProperty(props, Prefs.KEY_TINA_VERTICAL_MACRO_BUTTONS, pPrefs.isTinaMacroButtonsVertical()));

        try {
          FlamePanelControlStyle style = FlamePanelControlStyle.valueOf(getProperty(props, Prefs.KEY_TINA_EDITOR_CONTROLS_STYLE, pPrefs.getTinaEditorControlsStyle().toString()));
          pPrefs.setTinaEditorControlsStyle(style);
        }
        catch (Exception ex) {
          ex.printStackTrace();
        }
View Full Code Here


  public void triangleStyleCmb_changed() {
    if (refreshing) {
      return;
    }
    if (flamePanel != null) {
      FlamePanelControlStyle style = (FlamePanelControlStyle) data.triangleStyleCmb.getSelectedItem();
      flamePanel.setFlamePanelTriangleMode(style);
      refreshFlameImage(false);
    }
  }
View Full Code Here

TOP

Related Classes of org.jwildfire.create.tina.swing.flamepanel.FlamePanelControlStyle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.