Examples of FontChooser


Examples of net.sourceforge.squirrel_sql.fw.gui.FontChooser

          Font font = null;
          if (fi != null)
          {
            font = fi.createFont();
          }
          font = new FontChooser().showDialog(font);
          if (font != null)
          {
            btn.setSelectedFont(font);
            btn._lbl.setText(new FontInfo(font).toString());
          }
View Full Code Here

Examples of net.sourceforge.squirrel_sql.fw.gui.FontChooser

          Font font = null;
          if (fi != null)
          {
            font = fi.createFont();
          }
          font = new FontChooser().showDialog(font);
          if (font != null)
          {
            btn.setSelectedFont(font);
            btn._lbl.setText(new FontInfo(font).toString());
          }
View Full Code Here

Examples of org.broad.igv.ui.util.FontChooser

    }


    private void fontChangeButtonActionPerformed(ActionEvent e) {
        Font defaultFont = FontManager.getDefaultFont();
        FontChooser chooser = new FontChooser(this, defaultFont);
        chooser.setModal(true);
        chooser.setVisible(true);
        if (!chooser.isCanceled()) {
            Font font = chooser.getSelectedFont();
            if (font != null) {
                prefMgr.put(PreferenceManager.DEFAULT_FONT_FAMILY, font.getFamily());
                prefMgr.put(PreferenceManager.DEFAULT_FONT_SIZE, String.valueOf(font.getSize()));
                int attrs = Font.PLAIN;
                if (font.isBold()) attrs = Font.BOLD;
View Full Code Here

Examples of org.krysalis.jcharts.designer.common.font.FontChooser

    super();
    this.allChartTabs = allChartTabs;

    allChartTabs.addTab( "Chart Properties", this );

    this.titleFont= new FontChooser( "Title Font" );
    this.add( this.titleFont );

    this.borderStroke= new StrokeChooser( "Border Stroke" );
    this.add( this.borderStroke );
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.