Package scalaExec.gui.MathDialogs

Examples of scalaExec.gui.MathDialogs.ExpressionDialogPlot2D_Line.pack()


        bplot2d_line.setFont(new Font("Arial", Font.BOLD, 14));
        bplot2d_line.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
           ExpressionDialogPlot2D_Line  exprDialog = new ExpressionDialogPlot2D_Line();
           exprDialog.setLocation(GlobalValues.scalalabMainFrame.getLocation());
           exprDialog.pack();
           exprDialog.setVisible(true);
                 
           // construct an explicit focus event in order to display the cursor at the input console
        FocusEvent fe = new FocusEvent(GlobalValues.scalalabMainFrame.scalalabConsole, FocusEvent.FOCUS_GAINED);
        GlobalValues.scalalabMainFrame.scalalabConsole.dispatchEvent(fe);   
View Full Code Here


        bplot2d_histo.setFont(new Font("Arial", Font.BOLD, 14));
        bplot2d_histo.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
           ExpressionDialogPlot2D_Histo  exprDialog = new ExpressionDialogPlot2D_Histo();
           exprDialog.setLocation(GlobalValues.scalalabMainFrame.getLocation());
           exprDialog.pack();
           exprDialog.setVisible(true);
                 
           // construct an explicit focus event in order to display the cursor at the input console
        FocusEvent fe = new FocusEvent(GlobalValues.scalalabMainFrame.scalalabConsole, FocusEvent.FOCUS_GAINED);
        GlobalValues.scalalabMainFrame.scalalabConsole.dispatchEvent(fe);   
View Full Code Here

        bplot3d_grid.setFont(new Font("Arial", Font.BOLD, 14));
        bplot3d_grid.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
           ExpressionDialogPlot3D_Grid  exprDialog = new ExpressionDialogPlot3D_Grid("3-D Grid Plor");
           exprDialog.setLocation(GlobalValues.scalalabMainFrame.getLocation());
           exprDialog.pack();
           exprDialog.setVisible(true);
                 
           // construct an explicit focus event in order to display the cursor at the input console
        FocusEvent fe = new FocusEvent(GlobalValues.scalalabMainFrame.scalalabConsole, FocusEvent.FOCUS_GAINED);
        GlobalValues.scalalabMainFrame.scalalabConsole.dispatchEvent(fe);   
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.