Package fr.soleil.lib.project.swing.dialog

Examples of fr.soleil.lib.project.swing.dialog.ProgressDialog


            public boolean isCanceled() {
                return false;
            }
        };

        final ProgressDialog progressDialog = new ProgressDialog(testFrame);
        progressDialog.setProgressIndeterminate(true);
        progressDialog.setCancelable(killer);
        progressDialog.setTitle("Computing chart data");
        progressDialog.setMainMessage(progressDialog.getTitle());
        progressDialog.pack();
        progressDialog.setLocationRelativeTo(testFrame);
        progressDialog.setVisible(true);

        SwingWorker<Void, Void> chartFiller = new SwingWorker<Void, Void>() {
            @Override
            protected Void doInBackground() throws Exception {
                Map<String, Object> data = new LinkedHashMap<String, Object>();
                String tmpName = null;
                final NumberFormat format = NumberFormat.getInstance();
                format.setMinimumIntegerDigits(3);
                // Create 1500 dataview of 650 points
                for (int i = 0; i < 1500; i++) {
                    tmpName = "Curve-" + format.format(i);
                    double[] flatValues = new double[650];
                    for (int j = 0; j < flatValues.length / 2; j++) {
                        flatValues[2 * j] = 2 * j;
                        flatValues[2 * j + 1] = 2 * j + 1 + i;
                    }
                    data.put(tmpName, flatValues);
                }
                chartViewer.setData(data);
                return null;
            }

            @Override
            protected void done() {
                progressDialog.setVisible(false);
            }
        };
        chartFiller.execute();
    }
View Full Code Here

TOP

Related Classes of fr.soleil.lib.project.swing.dialog.ProgressDialog

Copyright © 2018 www.massapicom. 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.