Example usage for java.awt Cursor DEFAULT_CURSOR

List of usage examples for java.awt Cursor DEFAULT_CURSOR

Introduction

In this page you can find the example usage for java.awt Cursor DEFAULT_CURSOR.

Prototype

int DEFAULT_CURSOR

To view the source code for java.awt Cursor DEFAULT_CURSOR.

Click Source Link

Document

The default cursor type (gets set if no cursor is defined).

Usage

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono enlace en
 * la pantalla de diseo.//  w  ww .  java2s.c  o  m
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo
 */
private void ratonSaleDeIconoEnlace(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoEnlace
    iconoEnlace.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.ENLACE_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono LSRA en
 * la pantalla de diseo.//w ww  .  j av a2  s  .c om
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoLSRA(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoLSRA
    iconoLSRA.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.LSRA_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:edu.harvard.mcz.imagecapture.SpecimenDetailsViewPane.java

/**
 * This method initializes jButton   /*www .  j  a  v  a2  s  .c om*/
 *    
 * @return javax.swing.JButton   
 */
private JButton getJButton() {
    if (jButton == null) {
        jButton = new JButton("Save");
        if (specimen.isStateDone()) {
            jButton.setEnabled(false);
            jButton.setText("Migrated " + specimen.getLoadFlags());
        }
        jButton.setMnemonic(KeyEvent.VK_S);
        jButton.setToolTipText(
                "Save changes to this record to the database.  No fields should have red backgrounds before you save.");
        jButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent e) {
                try {
                    thisPane.getParent().getParent().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                } catch (Exception ex) {
                    log.error(ex);
                }

                save();

                ((CollectorTableModel) jTableCollectors.getModel()).fireTableDataChanged();
                ((NumberTableModel) jTableNumbers.getModel()).fireTableDataChanged();

                try {
                    thisPane.getParent().getParent()
                            .setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
                } catch (Exception ex) {
                    log.error(ex);
                }
            }
        });
    }
    return jButton;
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono LSR en
 * la pantalla de diseo.//from   w w w  .  j av a2s.c  o  m
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoLSR(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoLSR
    iconoLSR.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.LSR_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono LERA en
 * la pantalla de diseo.// ww  w.j a v a  2  s. c  om
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoLERA(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoLERA
    iconoLERA.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.LERA_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono LER en
 * la pantalla de diseo./*from   w w w. j  a  v a  2  s. c  om*/
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoLER(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoLER
    iconoLER.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.LER_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono receptor en
 * la pantalla de diseo./*  w  w w  .j a  v  a  2s.c  o  m*/
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoReceptor(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoReceptor
    iconoReceptor.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.RECEPTOR_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:simMPLS.ui.simulator.JVentanaHija.java

/** Este mtodo se llama automticamente cuando el ratn sale del icono emisor en
 * la pantalla de diseo./* w  ww. j  a  v a  2 s  . co m*/
 * @since 1.0
 * @param evt El evento que hace que se dispare este mtodo.
 */
private void ratonSaleDeIconoEmisor(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ratonSaleDeIconoEmisor
    iconoEmisor.setIcon(dispensadorDeImagenes.obtenerIcono(TImagesBroker.EMISOR_MENU));
    this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

From source file:edu.harvard.i2b2.patientMapping.ui.PatientMappingJPanel.java

private void jLeftButtonActionPerformed(java.awt.event.ActionEvent evt) {
    if (athread != null) {
        athread.stop();/*from   w w w  . j  a  v  a2s.  c o m*/
        athread = null;
        setCursor(new Cursor(Cursor.DEFAULT_CURSOR));

        // jRunQueryButton.setBackground(defaultcolor);
        try {
            //RandomAccessFile f = new RandomAccessFile(filename, "rw");
            //append(f, resultFile.toString());
            f.close();
            pl.stop();
            pl.setVisible(false);
            jLabel2.setText("Patient Set Size: ");//+setsize+ " ("+setsize+" loaded)");
            //jStartTextField.setText(""+(k+increment));
            //jIncrementTextField.setText(""+increment);
            //jScrollPane1.setViewportView(jTable1);
            //jScrollPane1.revalidate();
            jPanel1.revalidate();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

From source file:org.jab.docsearch.DocSearch.java

/**
 * creates a new docSearcher index//from w  ww  . ja va  2  s . c o m
 *
 * @param di
 *            DocSearcherIndex
 * @param isCdRomIndx
 *            is CDROM index
 * @throws IOException
 *             IO problem
 */
private void createNewIndex(DocSearcherIndex di, boolean isCdRomIndx) throws IOException {
    setStatus(I18n.getString("indexing") + " (" + di.getIndexPath() + ") ");
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    checkDefaults();
    StringBuffer failedBuf = new StringBuffer();
    String indexDirNew = di.getIndexPath();
    File indexFolder = new File(indexDirNew);
    long curFileSizeBytes = 0;
    int addedSuccessfully = 0;
    StringBuilder noRobotsBuf = new StringBuilder();
    noRobotsBuf.append('\n').append(I18n.getString("files_not_indexed_robot"));
    int numNoIndex = 0;
    boolean newIndex = false;
    if (!indexFolder.exists()) {
        setStatus(indexDirNew + " " + I18n.getString("lower_not_exist"));
        indexFolder.mkdir();
        newIndex = true;
    }
    // BUILD THE INDEX
    File contentFolder = new File(di.getPath());
    int totalFolders = 1;
    int totalFiles = 0;
    int numErrors = 0;
    // String urlStr = "";
    // String dateStr = "";
    // File tempDFile;
    int curSize = 1;
    if (contentFolder.exists()) {
        ArrayList<String> folderList = new ArrayList<String>();
        folderList.add(di.getPath()); // add in our contentDir
        String curFolderString = di.getPath();
        String[] filesString;
        String[] foldersString;
        File curFolderFile;
        int curItemNo = 0;
        int lastItemNo = 0;
        int numFiles = 0;
        int numFolders = 0;
        int curSubNum = 0;
        int startSubNum = Utils.countSlash(di.getPath());
        int maxSubNum = startSubNum + di.getDepth();
        // creating the index
        IndexWriter writer = new IndexWriter(indexDirNew, new StandardAnalyzer(), newIndex);
        // writer.setUseCompoundFile(true);
        do {
            // create our folder file
            curFolderString = folderList.get(curItemNo);
            curFolderFile = new File(curFolderString);
            curSubNum = Utils.countSlash(curFolderString);
            try {
                // handle any subfolders --> add them to our folderlist
                foldersString = curFolderFile.list(ff);
                numFolders = foldersString.length;
                for (int i = 0; i < numFolders; i++) {
                    // add them to our folderlist
                    String curFold = curFolderString + pathSep + foldersString[i] + pathSep;
                    curFold = Utils.replaceAll(pathSep + pathSep, curFold, pathSep);
                    folderList.add(curFold);
                    lastItemNo++;
                    totalFolders++;
                    // debug output
                    setStatus(dsFndFldr + " " + curFold);
                }
                // end for having more than 0 folder
            } catch (Exception e) {
                logger.fatal("createNewIndex() failed", e);
                setStatus(curFolderString + " : " + e.toString());
            }

            // add our files
            try {
                filesString = curFolderFile.list(wf);
                numFiles = filesString.length;
                logger.info("createNewIndex() Indexing " + numFiles + " files...");
                for (int i = 0; i < numFiles; i++) {
                    // add them to our folderlist
                    String curFi = curFolderString + pathSep + filesString[i];
                    curFi = Utils.replaceAll(pathSep + pathSep, curFi, pathSep);
                    curFileSizeBytes = FileUtils.getFileSize(curFi);
                    if (curFileSizeBytes > getMaxFileSize()) {
                        setStatus(I18n.getString("skipping_file_too_big") + " (" + curFileSizeBytes + ") "
                                + filesString[i]);
                    } else { // file size is not too big
                        setStatus(I18n.getString("please_wait...") + " " + curFi + " # " + curSize);
                        curSize++;
                        addedSuccessfully = idx.addDocToIndex(curFi, writer, di, isCdRomIndx, null);
                        switch (addedSuccessfully) {
                        case 1: // error
                            numErrors++;
                            if (numErrors < 8) {
                                failedBuf.append('\n').append(curFi);
                            }
                            break;
                        case 2: // meta robots = noindex
                            numNoIndex++;
                            if (numNoIndex < 8) {
                                noRobotsBuf.append('\n').append(curFi);
                            }
                            break;
                        default: // OK
                            totalFiles++;
                            break;
                        } // end of switch
                    } // end for not skipping, file size is not too big
                }
                // end for files
            }
            // end of trying to get files
            catch (Exception e) {
                logger.error("createNewIndex() failed", e);
                setStatus(I18n.getString("error") + " " + e.toString());
            }
            // increment our curItem
            folderList.set(curItemNo, null); // remove memory overhead as
            // you go!
            curItemNo++;
            if (curSubNum >= maxSubNum) {
                break;
            }
        } while (curItemNo <= lastItemNo);

        writer.close(); // close the writer
        indexes.add(di);
    } else {
        hasErr = true;
        errString = fEnv.getContentDirectory() + " " + I18n.getString("lower_not_exist");
    }
    // end for content dir Missing
    if (hasErr) {
        showMessage(I18n.getString("error_creating_index"), errString);
    } else {
        StringBuilder resultsBuf = new StringBuilder();
        resultsBuf.append(I18n.getString("added_to_index"));
        resultsBuf.append(" \"");
        resultsBuf.append(di.getName());
        resultsBuf.append("\" ");
        resultsBuf.append(totalFiles);
        resultsBuf.append(' ');
        resultsBuf.append(I18n.getString("files_from"));
        resultsBuf.append(' ');
        resultsBuf.append(totalFolders);
        resultsBuf.append(' ');
        resultsBuf.append(I18n.getString("folders"));
        resultsBuf.append("\n\n");
        resultsBuf.append(I18n.getString("starting_in_folder"));
        resultsBuf.append("\n\n\t");
        resultsBuf.append(' ');
        resultsBuf.append(di.getPath());
        resultsBuf.append("\n\n");
        resultsBuf.append(I18n.getString("for_a_depth_of"));
        resultsBuf.append(' ');
        resultsBuf.append(di.getDepth());
        resultsBuf.append('.');

        if (numErrors > 0) {
            resultsBuf.append('\n');
            resultsBuf.append(numErrors);
            resultsBuf.append(' ');
            resultsBuf.append(I18n.getString("files_not_indexed")).append('.');
            resultsBuf.append(failedBuf);
        }

        if (numNoIndex > 0) {
            resultsBuf.append("\n\n" + numNoIndex);
            resultsBuf.append('\n');
            resultsBuf.append(I18n.getString("files_not_indexed_robot"));
            resultsBuf.append(noRobotsBuf);
        }

        showMessage(dsIdxCrtd, resultsBuf.toString());
    }

    setStatus(dsIdxCrtd);
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
}