亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? defaultaxiseditor.java

?? 制作圖表的好工具
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:

        ticks.add(
            new JLabel(localizationResources.getString("Tick_label_font"))
        );
        this.tickLabelFontField = new FontDisplayField(this.tickLabelFont);
        ticks.add(this.tickLabelFontField);
        b = new JButton(localizationResources.getString("Select..."));
        b.setActionCommand("SelectTickLabelFont");
        b.addActionListener(this);
        ticks.add(b);

        this.showTickMarksCheckBox = new JCheckBox(
            localizationResources.getString("Show_tick_marks"), 
            axis.isTickMarksVisible()
        );
        ticks.add(this.showTickMarksCheckBox);
        ticks.add(new JPanel());
        ticks.add(new JPanel());

        this.otherTabs.add(localizationResources.getString("Ticks"), ticks);

        other.add(this.otherTabs);

        this.slot1.add(other);

        this.slot2 = new JPanel(new BorderLayout());
        this.slot2.add(this.slot1, BorderLayout.NORTH);
        add(this.slot2);

    }

    /**
     * Returns the current axis label.
     *
     * @return The current axis label.
     */
    public String getLabel() {
        return this.label.getText();
    }

    /**
     * Returns the current label font.
     *
     * @return The current label font.
     */
    public Font getLabelFont() {
        return this.labelFont;
    }

    /**
     * Returns the current label paint.
     *
     * @return The current label paint.
     */
    public Paint getLabelPaint() {
        return this.labelPaintSample.getPaint();
    }

    /**
     * Returns a flag that indicates whether or not the tick labels are visible.
     *
     * @return <code>true</code> if ick mark labels are visible.
     */
    public boolean isTickLabelsVisible() {
        return this.showTickLabelsCheckBox.isSelected();
    }

    /**
     * Returns the font used to draw the tick labels (if they are showing).
     *
     * @return The font used to draw the tick labels.
     */
    public Font getTickLabelFont() {
        return this.tickLabelFont;
    }

    /**
     * Returns the current tick label paint.
     *
     * @return The current tick label paint.
     */
    public Paint getTickLabelPaint() {
        return this.tickLabelPaintSample.getPaint();
    }

    /**
     * Returns the current value of the flag that determines whether or not
     * tick marks are visible.
     *
     * @return <code>true</code> if tick marks are visible.
     */
    public boolean isTickMarksVisible() {
        return this.showTickMarksCheckBox.isSelected();
    }

    /**
     * Returns the current tick label insets value
     *
     * @return The current tick label insets value.
     */
    public RectangleInsets getTickLabelInsets() {
        return (this.tickLabelInsets == null)
            ? new RectangleInsets(0, 0, 0, 0)
            : this.tickLabelInsets;
    }

    /**
     * Returns the current label insets value
     *
     * @return The current label insets value.
     */
    public RectangleInsets getLabelInsets() {
        return (this.labelInsets == null) 
            ? new RectangleInsets(0, 0, 0, 0) : this.labelInsets;
    }

    /**
     * Returns a reference to the tabbed pane.
     *
     * @return A reference to the tabbed pane.
     */
    public JTabbedPane getOtherTabs() {
        return this.otherTabs;
    }

    /**
     * Handles user interaction with the property panel.
     * 
     * @param event  information about the event that triggered the call to
     *      this method.
     */
    public void actionPerformed(ActionEvent event) {
        String command = event.getActionCommand();
        if (command.equals("SelectLabelFont")) {
            attemptLabelFontSelection();
        }
        else if (command.equals("SelectLabelPaint")) {
            attemptModifyLabelPaint();
        }
        else if (command.equals("SelectTickLabelFont")) {
            attemptTickLabelFontSelection();
        }
//        else if (command.equals("LabelInsets")) {
//            editLabelInsets();
//        }
//        else if (command.equals("TickLabelInsets")) {
//            editTickLabelInsets();
//        }
    }

    /**
     * Presents a font selection dialog to the user.
     */
    private void attemptLabelFontSelection() {

        FontChooserPanel panel = new FontChooserPanel(this.labelFont);
        int result = JOptionPane.showConfirmDialog(this, panel,
            localizationResources.getString("Font_Selection"),
            JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);

        if (result == JOptionPane.OK_OPTION) {
            this.labelFont = panel.getSelectedFont();
            this.labelFontField.setText(
                this.labelFont.getFontName() + " " + this.labelFont.getSize()
            );
        }

    }

    /**
     * Allows the user the opportunity to change the outline paint.
     */
    private void attemptModifyLabelPaint() {
        Color c;
        c = JColorChooser.showDialog(
            this, localizationResources.getString("Label_Color"), Color.blue
        );
        if (c != null) {
            this.labelPaintSample.setPaint(c);
        }
    }

    /**
     * Presents a tick label font selection dialog to the user.
     */
    public void attemptTickLabelFontSelection() {

        FontChooserPanel panel = new FontChooserPanel(this.tickLabelFont);
        int result = JOptionPane.showConfirmDialog(this, panel,
            localizationResources.getString("Font_Selection"),
            JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);

        if (result == JOptionPane.OK_OPTION) {
            this.tickLabelFont = panel.getSelectedFont();
            this.tickLabelFontField.setText(
                this.tickLabelFont.getFontName() + " "
                + this.tickLabelFont.getSize()
            );
        }

    }

//    /**
//     * Presents insets chooser panel allowing user to modify tick label's
//     * individual insets values. Updates the current insets text field if edit
//     * is accepted.
//     */
//    private void editTickLabelInsets() {
//        InsetsChooserPanel panel = new InsetsChooserPanel(this.tickLabelInsets);
//        int result =  JOptionPane.showConfirmDialog(
//            this, panel, localizationResources.getString("Edit_Insets"),
//            JOptionPane.PLAIN_MESSAGE
//        );
//
//        if (result == JOptionPane.OK_OPTION) {
//            this.tickLabelInsets = panel.getInsets();
//            this.tickLabelInsetsTextField.setInsets(this.tickLabelInsets);
//        }
//    }
//
//    /**
//     * Presents insets chooser panel allowing user to modify label's
//     * individual insets values. Updates the current insets text field if edit
//     * is accepted.
//     */
//    private void editLabelInsets() {
//        InsetsChooserPanel panel = new InsetsChooserPanel(this.labelInsets);
//        int result = JOptionPane.showConfirmDialog(
//            this, panel, localizationResources.getString("Edit_Insets"),
//            JOptionPane.PLAIN_MESSAGE
//        );
//
//        if (result == JOptionPane.OK_OPTION) {
//            this.labelInsets = panel.getInsets();
//            this.labelInsetsTextField.setInsets(this.labelInsets);
//        }
//    }

    /**
     * Sets the properties of the specified axis to match the properties
     * defined on this panel.
     *
     * @param axis  the axis.
     */
    public void setAxisProperties(Axis axis) {
        axis.setLabel(getLabel());
        axis.setLabelFont(getLabelFont());
        axis.setLabelPaint(getLabelPaint());
        axis.setTickMarksVisible(isTickMarksVisible());
        // axis.setTickMarkStroke(getTickMarkStroke());
        axis.setTickLabelsVisible(isTickLabelsVisible());
        axis.setTickLabelFont(getTickLabelFont());
        axis.setTickLabelPaint(getTickLabelPaint());
        axis.setTickLabelInsets(getTickLabelInsets());
        axis.setLabelInsets(getLabelInsets());
    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区精品婷婷| 亚洲精品伦理在线| 婷婷中文字幕综合| 欧美手机在线视频| 亚洲二区视频在线| 欧美日韩国产高清一区二区三区 | 欧美性一二三区| 一区二区三区日韩欧美精品| bt7086福利一区国产| 国产精品网曝门| 盗摄精品av一区二区三区| 欧美日韩亚洲国产综合| 中文字幕+乱码+中文字幕一区| 国产在线一区二区| 日韩视频免费直播| 一区二区三区久久久| 在线视频综合导航| 亚洲一区二区中文在线| 风间由美性色一区二区三区| 欧美日韩一级黄| 亚洲一区二区三区中文字幕| 欧美一二三四在线| 激情综合网天天干| 国产午夜精品久久| 99免费精品在线| 亚洲人成影院在线观看| 欧美亚洲高清一区二区三区不卡| 亚洲夂夂婷婷色拍ww47| 日韩欧美一卡二卡| 粉嫩一区二区三区性色av| 国产日韩欧美一区二区三区乱码 | 欧美精品1区2区3区| 日韩激情视频网站| 国产喷白浆一区二区三区| 99视频超级精品| 裸体在线国模精品偷拍| 国产精品久久久久影视| 精品视频免费在线| 成人的网站免费观看| 婷婷六月综合网| 国产精品女同一区二区三区| 欧美剧情片在线观看| 国产成人激情av| 日日夜夜免费精品| 亚洲日本在线a| 欧美精品一区二区在线播放| 在线免费观看成人短视频| 精东粉嫩av免费一区二区三区| 亚洲伦理在线免费看| 国产欧美综合色| 欧美va在线播放| 欧美剧情片在线观看| 国产毛片精品国产一区二区三区| 亚洲国产精品一区二区久久恐怖片| 日韩免费在线观看| 日韩色视频在线观看| 欧美午夜精品理论片a级按摩| av在线不卡观看免费观看| 国产一区二区毛片| 国产美女一区二区三区| 久久99国产精品久久99 | 久久精品视频免费| 久久精品夜色噜噜亚洲a∨| 欧美一区二区三区四区在线观看| 色婷婷av一区二区| av日韩在线网站| 日本精品一区二区三区四区的功能| 成人蜜臀av电影| 成人a免费在线看| 91在线一区二区| 欧美日韩免费高清一区色橹橹 | 国产精品欧美一区二区三区| 日韩精品一区二区三区在线| 日韩丝袜情趣美女图片| 精品国内片67194| 国产欧美日韩在线看| 亚洲免费观看高清完整| 亚洲一区二区三区免费视频| 九色综合狠狠综合久久| 成人黄色电影在线| 91亚洲精品一区二区乱码| 在线欧美小视频| 精品少妇一区二区| 亚洲制服欧美中文字幕中文字幕| 九色porny丨国产精品| 99久久久精品免费观看国产蜜| 欧美日韩综合一区| 久久精品一区二区三区av| 亚洲一区影音先锋| 韩国成人在线视频| 一本大道综合伊人精品热热| 精品99999| 日本v片在线高清不卡在线观看| 国内精品国产成人国产三级粉色| 色婷婷综合久久| 精品国产伦一区二区三区观看体验| 亚洲美女在线一区| 粉嫩蜜臀av国产精品网站| 欧美一级一级性生活免费录像| 中文字幕永久在线不卡| 韩国一区二区视频| 欧美日韩情趣电影| 亚洲欧美日韩一区| 99久久er热在这里只有精品66| 欧美成人性福生活免费看| 日本色综合中文字幕| 91成人在线精品| 亚洲欧洲精品一区二区精品久久久| 久久精品久久久精品美女| 91毛片在线观看| 国产欧美日韩精品一区| 亚洲成人福利片| 一本色道**综合亚洲精品蜜桃冫| 日韩精品专区在线影院重磅| 免费成人你懂的| 久久久久久免费毛片精品| 国产aⅴ精品一区二区三区色成熟| 欧美精品xxxxbbbb| 亚洲国产乱码最新视频 | 亚洲成人动漫在线观看| 91在线观看视频| 天堂蜜桃一区二区三区| 欧美久久久久免费| 日韩专区欧美专区| 久久中文字幕电影| 本田岬高潮一区二区三区| 亚洲最大色网站| 精品国产区一区| 首页国产丝袜综合| 久久一日本道色综合| 色域天天综合网| 美女一区二区久久| 136国产福利精品导航| 欧美日韩国产色站一区二区三区| 激情图片小说一区| 亚洲免费伊人电影| 日韩欧美一级在线播放| 不卡av在线免费观看| 六月丁香婷婷久久| 国产精品第13页| 2023国产精品自拍| 欧美日韩一区在线观看| 不卡的电视剧免费网站有什么| 天堂va蜜桃一区二区三区漫画版| 国产婷婷一区二区| 精品三级在线观看| 欧美一级片在线观看| 在线观看精品一区| 在线免费观看视频一区| 亚洲精品一二三| 亚洲成人在线观看视频| 国产精品久久久久影院| 欧美国产国产综合| 国产婷婷色一区二区三区四区 | 欧美日本免费一区二区三区| 97精品国产97久久久久久久久久久久| 久久aⅴ国产欧美74aaa| 久久99日本精品| 午夜视频在线观看一区二区三区 | 久久网站热最新地址| 国产精品一卡二卡在线观看| 精品国产自在久精品国产| 91久久线看在观草草青青| 国产精品网曝门| 精品成人一区二区三区四区| 在线成人免费观看| 日韩一区二区在线观看视频 | 国产人成亚洲第一网站在线播放| 欧美一区二区日韩一区二区| 91精品国产综合久久久久久漫画 | 麻豆视频观看网址久久| 日本欧美一区二区在线观看| 亚洲午夜久久久久久久久久久| 精品国产91洋老外米糕| 久久精品亚洲一区二区三区浴池| 中文字幕国产精品一区二区| 伊人色综合久久天天| 日韩电影在线免费看| caoporm超碰国产精品| 欧美日韩成人在线| 国产午夜亚洲精品午夜鲁丝片| 18欧美乱大交hd1984| 美女视频黄久久| 91小视频在线观看| 日韩精品资源二区在线| 亚洲天堂成人在线观看| 紧缚捆绑精品一区二区| 国产一区999| 制服丝袜成人动漫| 亚洲一区二区在线视频| 9人人澡人人爽人人精品| 日本一区二区三区在线观看| 日韩精品一级中文字幕精品视频免费观看 | 成人欧美一区二区三区1314| 国产成a人亚洲精品| 国产欧美一区二区三区网站| 精品一区二区免费在线观看| 日韩欧美一级片| 精品亚洲aⅴ乱码一区二区三区| 欧美一区二区观看视频|