类java.awt.Font源码实例Demo

下面列出了怎么用java.awt.Font的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: jdk8u60   文件: Font2D.java
protected void setStyle() {

        String fName = fullName.toLowerCase();

        for (int i=0; i < boldItalicNames.length; i++) {
            if (fName.indexOf(boldItalicNames[i]) != -1) {
                style = Font.BOLD|Font.ITALIC;
                return;
            }
        }

        for (int i=0; i < italicNames.length; i++) {
            if (fName.indexOf(italicNames[i]) != -1) {
                style = Font.ITALIC;
                return;
            }
        }

        for (int i=0; i < boldNames.length; i++) {
            if (fName.indexOf(boldNames[i]) != -1 ) {
                style = Font.BOLD;
                return;
            }
        }
    }
 
源代码2 项目: TencentKona-8   文件: XOpenTypeViewer.java
public Component prepareRenderer(TableCellRenderer renderer,
        int row, int column) {
    Component comp = super.prepareRenderer(renderer, row, column);

    if (normalFont == null) {
        normalFont = comp.getFont();
        boldFont = normalFont.deriveFont(Font.BOLD);
    }

    Object o = ((DefaultTableModel) getModel()).getValueAt(row, column);
    if (column == 0) {
        String key = o.toString();
        renderKey(key, comp);
    } else {
        if (isClickableElement(o)) {
            comp.setFont(boldFont);
        } else {
            comp.setFont(normalFont);
        }
    }

    return comp;
}
 
源代码3 项目: openjdk-jdk8u   文件: TextLayout.java
/**
 * Constructs a <code>TextLayout</code> from a <code>String</code>
 * and an attribute set.
 * <p>
 * All the text is styled using the provided attributes.
 * <p>
 * <code>string</code> must specify a single paragraph of text because an
 * entire paragraph is required for the bidirectional algorithm.
 * @param string the text to display
 * @param attributes the attributes used to style the text
 * @param frc contains information about a graphics device which is needed
 *       to measure the text correctly.
 *       Text measurements can vary slightly depending on the
 *       device resolution, and attributes such as antialiasing.  This
 *       parameter does not specify a translation between the
 *       <code>TextLayout</code> and user space.
 */
public TextLayout(String string, Map<? extends Attribute,?> attributes,
                  FontRenderContext frc)
{
    if (string == null) {
        throw new IllegalArgumentException("Null string passed to TextLayout constructor.");
    }

    if (attributes == null) {
        throw new IllegalArgumentException("Null map passed to TextLayout constructor.");
    }

    if (string.length() == 0) {
        throw new IllegalArgumentException("Zero length string passed to TextLayout constructor.");
    }

    char[] text = string.toCharArray();
    Font font = singleFont(text, 0, text.length, attributes);
    if (font != null) {
        fastInit(text, font, attributes, frc);
    } else {
        AttributedString as = new AttributedString(string, attributes);
        standardInit(as.getIterator(), text, frc);
    }
}
 
源代码4 项目: seaglass   文件: SeaGlassBrowser.java
static void printFont(PrintWriter html, Font font) {
    String style = "";
    if (font.isBold() && font.isItalic()) {
        style = "Bold & Italic";
    } else if (font.isBold()) {
        style = "Bold";
    } else if (font.isItalic()) {
        style = "Italic";
    }
    html.println("<td>Font: " + font.getFamily() + " " + font.getSize() + " " + style + "</td>");
    int w = 300, h = 30;
    BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
    Graphics2D g2 = img.createGraphics();
    Composite old = g2.getComposite();
    g2.setComposite(AlphaComposite.Clear);
    g2.fillRect(0, 0, w, h);
    g2.setComposite(old);
    g2.setColor(Color.BLACK);
    g2.setFont(font);
    g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
    g2.drawString("The quick brown fox jumps over the lazy dog.", 5, 20);
    g2.dispose();
    html.println("<td>" + saveImage(img) + "</td>");
}
 
源代码5 项目: Spark   文件: SparkToaster.java
public TitleLabel(String text, final boolean showCloseIcon) {
    setLayout(new GridBagLayout());
    label = new JLabel(text);
    label.setFont(new Font("Dialog", Font.BOLD, 11));
    label.setHorizontalTextPosition(JLabel.RIGHT);
    label.setHorizontalAlignment(JLabel.LEFT);

    add(label, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));

closeButton = new RolloverButton(SparkRes.getImageIcon(SparkRes.CLOSE_IMAGE));

if (showCloseIcon) {
	add(closeButton, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
}

    setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, Color.lightGray));
}
 
源代码6 项目: Spark   文件: DialButton.java
public void paintComponent(Graphics g) {
    super.paintComponent(g);
    int width = getWidth();
    int height = getHeight();

    g.setColor(Color.gray);
    g.setFont(new Font("Tahoma", Font.PLAIN, 10));

    int topTextWidth = g.getFontMetrics().stringWidth(textOnTop);
    int x = (width - topTextWidth) / 2;
    int y = height - 26;
    g.drawString(textOnTop, x, y);

    g.setColor(Color.black);
    g.setFont(new Font("Tahoma", Font.BOLD, 11));
    int numberWidth = g.getFontMetrics().stringWidth(number);
    x = (width - numberWidth) / 2;
    y = height - 13;
    g.drawString(number, x, y);
}
 
源代码7 项目: openstock   文件: MultiplePiePlot.java
/**
 * Creates a new plot.
 *
 * @param dataset  the dataset (<code>null</code> permitted).
 */
public MultiplePiePlot(CategoryDataset dataset) {
    super();
    setDataset(dataset);
    PiePlot piePlot = new PiePlot(null);
    piePlot.setIgnoreNullValues(true);
    this.pieChart = new JFreeChart(piePlot);
    this.pieChart.removeLegend();
    this.dataExtractOrder = TableOrder.BY_COLUMN;
    this.pieChart.setBackgroundPaint(null);
    TextTitle seriesTitle = new TextTitle("Series Title",
            new Font("SansSerif", Font.BOLD, 12));
    seriesTitle.setPosition(RectangleEdge.BOTTOM);
    this.pieChart.setTitle(seriesTitle);
    this.aggregatedItemsKey = "Other";
    this.aggregatedItemsPaint = Color.lightGray;
    this.sectionPaints = new HashMap();
    this.legendItemShape = new Ellipse2D.Double(-4.0, -4.0, 8.0, 8.0);
}
 
源代码8 项目: netbeans   文件: TimelineHeaderRenderer.java
private static void initStaticUI(Component c, JTableHeader header) {
    painter = new LabelRenderer(true);
    
    Color color = c.getForeground();
    if (color == null) color = header.getForeground();
    if (color == null) color = UIManager.getColor("TableHeader.foreground"); // NOI18N
    if (color != null) painter.setForeground(color);
    Font font = c.getFont();
    if (font == null) font = header.getFont();
    if (font == null) font = UIManager.getFont("TableHeader.font"); // NOI18N
    if (font != null) painter.setFont(font);
    
    if (UIUtils.isWindowsXPLookAndFeel()) Y_LAF_OFFSET = 1;
    else if (UIUtils.isNimbusLookAndFeel()) Y_LAF_OFFSET = -1;
    else Y_LAF_OFFSET = 0;
}
 
源代码9 项目: Spark   文件: NonRosterPanel.java
public JPanel buildTopPanel() {
    final JLabel avatarLabel = new JLabel(PhoneRes.getImageIcon("LARGE_PHONE_ICON"));

    final JLabel nameLabel = new JLabel();
    nameLabel.setFont(new Font("Arial", Font.BOLD, 19));
    nameLabel.setForeground(new Color(64, 103, 162));
    String remoteName = getActiveCall().getCall().getRemoteName();
    nameLabel.setText(remoteName);

    final JPanel topPanel = new JPanel();
    topPanel.setOpaque(false);
    topPanel.setLayout(new GridBagLayout());

    // Add Connected Label
    connectedLabel = new JLabel(CONNECTED);
    connectedLabel.setFont(new Font("Arial", Font.BOLD, 16));
    connectedLabel.setForeground(greenColor);

    // Add All Items to Top Panel
    topPanel.add(avatarLabel, new GridBagConstraints(0, 0, 1, 2, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    topPanel.add(nameLabel, new GridBagConstraints(1, 1, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    topPanel.add(connectedLabel, new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));

    topPanel.setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, Color.lightGray));

    return topPanel;
}
 
源代码10 项目: hottub   文件: PrintLatinCJKTest.java
public int print(Graphics g, PageFormat pf, int pageIndex)
                     throws PrinterException {

    if (pageIndex > 0) {
        return Printable.NO_SUCH_PAGE;
    }
    g.translate((int) pf.getImageableX(), (int) pf.getImageableY());
    g.setFont(new Font("Dialog", Font.PLAIN, 36));
    g.drawString("\u4e00\u4e01\u4e02\u4e03\u4e04English", 20, 100);
    return Printable.PAGE_EXISTS;
}
 
源代码11 项目: jdk8u_jdk   文件: TextConstructionTests.java
public void runTest(Object ctx, int numReps) {
    TCContext tcctx = (TCContext)ctx;
    final Font font = tcctx.font;
    final char[] chars = tcctx.chars1;
    final int start = 1;
    final int limit = chars.length - 1;
    final FontRenderContext frc = tcctx.frc;
    final int flags = tcctx.flags;
    GlyphVector gv;
    do {
        gv = font.layoutGlyphVector(frc, chars, start, limit, flags);
    } while (--numReps >= 0);
}
 
源代码12 项目: coming   文件: Arja_000_t.java
/**
 * Draws an item label.
 *
 * @param g2  the graphics device.
 * @param orientation  the orientation.
 * @param dataset  the dataset.
 * @param row  the row.
 * @param column  the column.
 * @param selected  is the item selected?
 * @param x  the x coordinate (in Java2D space).
 * @param y  the y coordinate (in Java2D space).
 * @param negative  indicates a negative value (which affects the item
 *                  label position).
 *
 * @since 1.2.0
 */
protected void drawItemLabel(Graphics2D g2, PlotOrientation orientation,
        CategoryDataset dataset, int row, int column, boolean selected,
        double x, double y, boolean negative) {

    CategoryItemLabelGenerator generator = getItemLabelGenerator(row,
            column, selected);
    if (generator != null) {
        Font labelFont = getItemLabelFont(row, column, selected);
        Paint paint = getItemLabelPaint(row, column, selected);
        g2.setFont(labelFont);
        g2.setPaint(paint);
        String label = generator.generateLabel(dataset, row, column);
        ItemLabelPosition position = null;
        if (!negative) {
            position = getPositiveItemLabelPosition(row, column, selected);
        }
        else {
            position = getNegativeItemLabelPosition(row, column, selected);
        }
        Point2D anchorPoint = calculateLabelAnchorPoint(
                position.getItemLabelAnchor(), x, y, orientation);
        TextUtilities.drawRotatedString(label, g2,
                (float) anchorPoint.getX(), (float) anchorPoint.getY(),
                position.getTextAnchor(),
                position.getAngle(), position.getRotationAnchor());
    }

}
 
源代码13 项目: filthy-rich-clients   文件: DoneStepPanel.java
public DoneStepPanel() {
    setLayout(new GridBagLayout());
    setBackground(Color.BLACK);
    setOpaque(false);
    JLabel label = new JLabel(
            Application.getResourceBundle().getString("step.3.doneTitle"));
    label.setFont(new Font("Helvetica", Font.BOLD, 64)); // NON-NLS
    label.setForeground(Color.WHITE);
    add(label, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
                                      GridBagConstraints.CENTER,
                                      GridBagConstraints.NONE,
                                      new Insets(0, 0, 0, 0), 0, 0));
}
 
源代码14 项目: MeteoInfo   文件: JDayChooser.java
/**
 * Sets the font property.
 * 
 * @param font
 *            the new font
 */
public void setFont(Font font) {
	if (days != null) {
		for (int i = 0; i < 49; i++) {
			days[i].setFont(font);
		}
	}
	if (weeks != null) {
		for (int i = 0; i < 7; i++) {
			weeks[i].setFont(font);
		}
	}
}
 
源代码15 项目: netbeans   文件: IconPanel.java
public void setFont(Font f) {
    if (comp != null) {
        comp.setFont(f);
    }

    super.setFont(f);
}
 
源代码16 项目: netbeans   文件: PrependedTextView.java
public PrependedTextView(DocumentViewOp op, AttributeSet attributes, EditorView delegate) {
    super(null);
    this.attributes = attributes;
    this.delegate = delegate;
    Font font = ViewUtils.getFont(attributes, op.getDefaultHintFont());
    prependedTextLayout = op.createTextLayout((String) attributes.getAttribute(ViewUtils.KEY_VIRTUAL_TEXT_PREPEND), font);
    Rectangle2D textBounds = prependedTextLayout.getBounds(); //TODO: allocation!
    double em = op.getDefaultCharWidth();
    leftShift = em / 2;
    prependedTextWidth = Math.ceil(textBounds.getWidth() + em);
}
 
源代码17 项目: Clither-Server   文件: ServerGUI.java
public static void spawn(ClitherServer server) {
    JFrame frame = new JFrame();
    frame.setLayout(new GridBagLayout());
    frame.setTitle("ClitherProject Server Frame v1.0");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTextArea console = new JTextArea(40, 120);
    console.setFont(new Font("monospaced", Font.PLAIN, 12));
    console.setEditable(false);

    JScrollPane scrollPane = new JScrollPane(console);

    JTextField textField = new JTextField();
    textField.addActionListener((event) -> {
        server.handleCommand(textField.getText());
        textField.setText("");
    });

    GridBagConstraints c = new GridBagConstraints();
    c.gridwidth = GridBagConstraints.REMAINDER;

    c.fill = GridBagConstraints.BOTH;
    c.weightx = 1.0;
    c.weighty = 1.0;
    frame.getContentPane().add(scrollPane, c);

    c.fill = GridBagConstraints.HORIZONTAL;
    c.weightx = 0.0;
    c.weighty = 0.0;
    frame.getContentPane().add(textField, c);

    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

    redirectOutputStreams(console);
    spawned = true;
}
 
源代码18 项目: amodeus   文件: LinkLayer.java
/** Draw labels onto graphics object
 *
 * @param map to find closest streets
 * @param graphics Graphics2D object on which the labels are to be drawn */
private void drawLabel(NdMap<Street> map, Graphics2D graphics) {
    final Point point = amodeusComponent.getMapPosition(lastCoord.getLat(), lastCoord.getLon());
    if (Objects.nonNull(point)) {
        Tensor center = Tensors.vector(point.x, point.y);
        NdCluster<Street> cluster = map.buildCluster(NdCenterInterface.euclidean(center), 2);
        graphics.setFont(new Font(Font.DIALOG, Font.PLAIN, 12));
        GraphicsUtil.setQualityHigh(graphics);
        for (NdEntry<Street> entry : cluster.collection()) {
            Street street = entry.value();
            double theta = street.angle();
            Point p1 = street.p1;
            Point p2 = street.p2;
            graphics.setColor(Color.RED);
            graphics.drawLine(p1.x, p1.y, p2.x, p2.y);
            graphics.setColor(Color.WHITE);
            graphics.fillRect(p1.x - 1, p1.y - 1, 3, 3);
            graphics.fillRect(p2.x - 1, p2.y - 1, 3, 3);
            AffineTransform saveAT = graphics.getTransform();
            graphics.rotate(theta, p1.x, p1.y);
            graphics.drawString( //
                    "\u2192 " + street.osmLink.link.getId().toString() + " \u2192", //
                    p1.x + 10, p1.y + 10);
            graphics.setTransform(saveAT);
            jTextArea.setText(street.osmLink.link.getId().toString());
        }
        GraphicsUtil.setQualityDefault(graphics);
    }

}
 
源代码19 项目: ET_Redux   文件: GeoAgeLabel.java
/**
 * 
 * @param g2d
 */
public void paint(Graphics2D g2d) {
    
    g2d.setFont(new Font(
            "SansSerif",
            Font.PLAIN,
            10));
    
    Rectangle2D level1GeoAge = new Rectangle2D.Double(0, 0, width - 0.1, height - 0.1);
    g2d.draw(level1GeoAge);
    g2d.drawString(label, (float)1, (float)(height - 2));

}
 
源代码20 项目: coming   文件: Arja_0089_t.java
/**
 * Draws an item label.
 *
 * @param g2  the graphics device.
 * @param orientation  the orientation.
 * @param dataset  the dataset.
 * @param row  the row.
 * @param column  the column.
 * @param selected  is the item selected?
 * @param x  the x coordinate (in Java2D space).
 * @param y  the y coordinate (in Java2D space).
 * @param negative  indicates a negative value (which affects the item
 *                  label position).
 *
 * @since 1.2.0
 */
protected void drawItemLabel(Graphics2D g2, PlotOrientation orientation,
        CategoryDataset dataset, int row, int column, boolean selected,
        double x, double y, boolean negative) {

    CategoryItemLabelGenerator generator = getItemLabelGenerator(row,
            column, selected);
    if (generator != null) {
        Font labelFont = getItemLabelFont(row, column, selected);
        Paint paint = getItemLabelPaint(row, column, selected);
        g2.setFont(labelFont);
        g2.setPaint(paint);
        String label = generator.generateLabel(dataset, row, column);
        ItemLabelPosition position = null;
        if (!negative) {
            position = getPositiveItemLabelPosition(row, column, selected);
        }
        else {
            position = getNegativeItemLabelPosition(row, column, selected);
        }
        Point2D anchorPoint = calculateLabelAnchorPoint(
                position.getItemLabelAnchor(), x, y, orientation);
        TextUtilities.drawRotatedString(label, g2,
                (float) anchorPoint.getX(), (float) anchorPoint.getY(),
                position.getTextAnchor(),
                position.getAngle(), position.getRotationAnchor());
    }

}
 
源代码21 项目: ghidra   文件: DiffScreenShots.java
@Test
public void testDiffApplySettingsPopup() throws Exception {
	JMenu jMenu = new JMenu();
	Font font = jMenu.getFont().deriveFont(11f);
	TextFormatter tf = new TextFormatter(font, 3, 220, 0, 20, 3);
	TextFormatterContext white = new TextFormatterContext(Color.WHITE);
	tf.colorLines(new Color(60, 115, 200), 2, 1);

	tf.writeln("Set Ignore for All Apply Settings");
	tf.writeln("Set Replace for All Apply Settings");
	tf.writeln("|Set Merge for All Apply Settings|", white);
	image = tf.getImage();
}
 
源代码22 项目: Java-MP3-player   文件: PlayerTest.java
void playButton() {
	btnPlay = new OvalButton("►");
	btnPlay.setFont(new Font("Dialog", Font.BOLD, 26));

	btnPlay.setBounds(240, 30, 54, 54);
	btnPlay.setPreferredSize(new Dimension(130, 28));

	btnPlay.addMouseListener(new MouseAdapter() {
		public void mouseClicked(MouseEvent e) {
			Play();
		}
	});
	panel.add(btnPlay);
}
 
源代码23 项目: buffer_bci   文件: StandardChartTheme.java
/**
 * Creates a new default instance.
 *
 * @param name  the name of the theme (<code>null</code> not permitted).
 * @param shadow  a flag that controls whether a shadow generator is 
 *                included.
 *
 * @since 1.0.14
 */
public StandardChartTheme(String name, boolean shadow) {
    ParamChecks.nullNotPermitted(name, "name");
    this.name = name;
    this.extraLargeFont = new Font("Tahoma", Font.BOLD, 20);
    this.largeFont = new Font("Tahoma", Font.BOLD, 14);
    this.regularFont = new Font("Tahoma", Font.PLAIN, 12);
    this.smallFont = new Font("Tahoma", Font.PLAIN, 10);
    this.titlePaint = Color.black;
    this.subtitlePaint = Color.black;
    this.legendBackgroundPaint = Color.white;
    this.legendItemPaint = Color.darkGray;
    this.chartBackgroundPaint = Color.white;
    this.drawingSupplier = new DefaultDrawingSupplier();
    this.plotBackgroundPaint = Color.lightGray;
    this.plotOutlinePaint = Color.black;
    this.labelLinkPaint = Color.black;
    this.labelLinkStyle = PieLabelLinkStyle.CUBIC_CURVE;
    this.axisOffset = new RectangleInsets(4, 4, 4, 4);
    this.domainGridlinePaint = Color.white;
    this.rangeGridlinePaint = Color.white;
    this.baselinePaint = Color.black;
    this.crosshairPaint = Color.blue;
    this.axisLabelPaint = Color.darkGray;
    this.tickLabelPaint = Color.darkGray;
    this.barPainter = new GradientBarPainter();
    this.xyBarPainter = new GradientXYBarPainter();
    this.shadowVisible = false;
    this.shadowPaint = Color.gray;
    this.itemLabelPaint = Color.black;
    this.thermometerPaint = Color.white;
    this.wallPaint = BarRenderer3D.DEFAULT_WALL_PAINT;
    this.errorIndicatorPaint = Color.black;
    this.shadowGenerator = shadow ? new DefaultShadowGenerator() : null;
}
 
源代码24 项目: netbeans   文件: JPQLEditorTopComponent.java
public JPQLEditorTopComponent(JPQLEditorController controller) {
    this.controller = controller;
    initComponents();
    
    // configure row height
    // FIXME there should be a common place to do that
    int height = resultsTable.getRowHeight();
    Font cellFont = UIManager.getFont("TextField.font");
    if (cellFont != null) {
        FontMetrics metrics = resultsTable.getFontMetrics(cellFont);
        if (metrics != null) {
            height = metrics.getHeight() + 2;
        }
    }
    resultsTable.setRowHeight(Math.max(resultsTable.getRowHeight(), height));
    
    puComboBox.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            puComboboxActionPerformed();
        }
    });

    this.thisWindowCount = getNextWindowCount();
    setName(NbBundle.getMessage(JPQLEditorTopComponent.class, "CTL_JPQLEditorTopComponent") + thisWindowCount);
    setToolTipText(NbBundle.getMessage(JPQLEditorTopComponent.class, "HINT_JPQLEditorTopComponent"));
    setIcon(ImageUtilities.loadImage(ICON_PATH, true));

    sqlToggleButton.setSelected(true);
    jpqlEditor.getDocument().addDocumentListener(new JPQLDocumentListener());
    ((NbEditorDocument) jpqlEditor.getDocument()).runAtomic(new Runnable() {//hack to unlock editor (make modifieble)
        @Override
        public void run() {
        }
    });
    jpqlEditor.addMouseListener(new JPQLEditorPopupMouseAdapter());
    showSQL(NbBundle.getMessage(JPQLEditorTopComponent.class, "BuildHint"));
    resultsTable.setDefaultRenderer(Object.class, new ResultTableCellRenderer());
}
 
源代码25 项目: SikuliX1   文件: EditorRegionLabel.java
private void init(EditorPane pane, String lblText) {
  editor = pane;
  pyText = lblText;
  setFont(new Font(editor.getFont().getFontName(), Font.PLAIN, editor.getFont().getSize()));
  setBorder(bfinal);
  setCursor(new Cursor(Cursor.HAND_CURSOR));
  addMouseListener(this);
  setText(pyText.replaceAll("Region", "").replaceAll("\\(", "").replaceAll("\\)", ""));
}
 
源代码26 项目: wandora   文件: TMQLPanel.java
/**
 * Creates new form TMQLPanel
 */
public TMQLPanel() {
    wandora = Wandora.getWandora();
    initComponents();
    runtimeComboBox.setEditable(false);
    message = new SimpleLabel();
    message.setHorizontalAlignment(SimpleLabel.CENTER);
    message.setIcon(UIBox.getIcon("gui/icons/warn.png"));
    tmqlTextPane.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 12));
    clearResultsButton.setEnabled(false);
    ((TMQLTextPane) tmqlTextPane).setHorizontallyResizeable(false);
    readStoredTmqlQueries();
}
 
源代码27 项目: openprodoc   文件: MainWin.java
/**
 * 
 * @return
 */
static public Font getFontDialog()
{
if (DialogFont==null)
    EvaluateDef();
return (DialogFont);
}
 
源代码28 项目: ccu-historian   文件: LogAxis.java
/**
 * Estimates the maximum tick label height.
 *
 * @param g2  the graphics device.
 *
 * @return The maximum height.
 *
 * @since 1.0.7
 */
protected double estimateMaximumTickLabelHeight(Graphics2D g2) {
    RectangleInsets tickLabelInsets = getTickLabelInsets();
    double result = tickLabelInsets.getTop() + tickLabelInsets.getBottom();

    Font tickLabelFont = getTickLabelFont();
    FontRenderContext frc = g2.getFontRenderContext();
    result += tickLabelFont.getLineMetrics("123", frc).getHeight();
    return result;
}
 
源代码29 项目: jdk8u_jdk   文件: Font2D.java
/**
 * The length of the metrics array must be >= 4.  This method will
 * store the following elements in that array before returning:
 *    metrics[0]: ascent
 *    metrics[1]: descent
 *    metrics[2]: leading
 *    metrics[3]: max advance
 */
public void getFontMetrics(Font font, FontRenderContext frc,
                           float metrics[]) {
    StrikeMetrics strikeMetrics = getStrike(font, frc).getFontMetrics();
    metrics[0] = strikeMetrics.getAscent();
    metrics[1] = strikeMetrics.getDescent();
    metrics[2] = strikeMetrics.getLeading();
    metrics[3] = strikeMetrics.getMaxAdvance();
}
 
源代码30 项目: scrimage   文件: CaptionFilter.java
public CaptionFilter(String text, Position position, Font font, Color textColor, double textAlpha, boolean antiAlias, boolean fullWidth, Color captionBackground, double captionAlpha, Padding padding) {
    this.text = text;
    this.position = position;
    this.x = -1;
    this.y = -1;
    this.font = font;
    this.textColor = textColor;
    this.textAlpha = textAlpha;
    this.antiAlias = antiAlias;
    this.fullWidth = fullWidth;
    this.captionBackground = captionBackground;
    this.captionAlpha = captionAlpha;
    this.padding = padding;
}
 
 类所在包
 同包方法