⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gantturlchooser.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
/*************************************************************************** GanttURLChooser.java  -  description ------------------- begin                : july 2003 copyright            : (C) 2003 by Thomas Alexandre email                : alexthomas(at)ganttproject.org ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * *                                                                         * ***************************************************************************/package net.sourceforge.ganttproject.gui;import java.awt.BorderLayout;import java.awt.FlowLayout;import java.awt.Frame;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.Box;import javax.swing.JButton;import javax.swing.JDialog;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JPasswordField;import javax.swing.JTextField;import net.sourceforge.ganttproject.GanttProject;import net.sourceforge.ganttproject.language.GanttLanguage;/** * Class to select a file from th web */public class GanttURLChooser extends JDialog {    /** JTextField for the name of project on the server. */    private JTextField urlField;    private JTextField userNameField;    private JPasswordField passwordField;    /** La langue utilisee. */    GanttLanguage language = GanttLanguage.getInstance();    /** The result of the file */    public String fileurl;    public String userName;    public String password;    /** true if the ok button was pressed */    public boolean change = false;    /** The constructor */    public GanttURLChooser(Frame parent, boolean opening,            String currentURL, String currentUser, String currentPass) {        super(parent, opening ? (GanttProject.correctLabel(GanttLanguage                .getInstance().getText("openFromServer"))) : (GanttProject                .correctLabel(GanttLanguage.getInstance().getText(                        "saveToServer"))), true);        JPanel inputPanel = new JPanel(new BorderLayout());        Box serverBox = Box.createVerticalBox();        serverBox.add(new JLabel(language.getText("fileFromServer")));        String sDefaultURL = "http://ganttproject.sourceforge.net/tmp/testGantt.xml";        urlField = new JTextField((null != currentURL) ? currentURL                : sDefaultURL);        serverBox.add(urlField);        inputPanel.add(serverBox, BorderLayout.NORTH);        Box hb = Box.createHorizontalBox(); // horizontal box        Box ivbw = Box.createVerticalBox(); // inner vertical box west        Box ivbe = Box.createVerticalBox(); // inner vertical box east        ivbw.add(new JLabel(language.getText("userName")));        userNameField = new JTextField(currentUser);        ivbw.add(userNameField);        ivbe.add(new JLabel(language.getText("password")));        passwordField = new JPasswordField(currentPass);        ivbe.add(passwordField);        hb.add(ivbw);        hb.add(ivbe);        inputPanel.add(hb, BorderLayout.SOUTH);        JPanel centerPanel = new JPanel(new FlowLayout());        centerPanel.add(inputPanel, BorderLayout.CENTER);        getContentPane().add(centerPanel, BorderLayout.CENTER);        JPanel southPanel = new JPanel();        JButton ok = new JButton(language.getText("ok"));        getRootPane().setDefaultButton(ok);        southPanel.add(ok);        // Listener sur le bouton ok        ok.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent evt) {                setVisible(false);                dispose();                fileurl = urlField.getText();                userName = userNameField.getText();                password = new String(passwordField.getPassword());                change = true;            }        });        // bouton cancel        JButton cancel = new JButton(language.getText("cancel"));        southPanel.add(cancel);        cancel.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent evt) {                setVisible(false);                dispose();            }        });        getContentPane().add(southPanel, BorderLayout.SOUTH);        pack();        setResizable(true);        DialogAligner.center(this, getParent());        applyComponentOrientation(language.getComponentOrientation());    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -