Examples of showDialog()


Examples of com.mucommander.ui.dialog.auth.AuthDialog.showDialog()

     * @param errorMessage optional (can be null), an error message describing a prior authentication failure
     * @return the AuthDialog that contains the credentials selected by the user (if any)
     */
    private AuthDialog popAuthDialog(FileURL fileURL, boolean authFailed, String errorMessage) {
        AuthDialog authDialog = new AuthDialog(mainFrame, fileURL, authFailed, errorMessage);
        authDialog.showDialog();
        return authDialog;
    }


    /**
 
View Full Code Here

Examples of com.mucommander.ui.dialog.pref.general.GeneralPreferencesDialog.showDialog()

        if(!SendMailJob.mailPreferencesSet()) {
            showErrorDialog(Translator.get("email_dialog.prefs_not_set"), Translator.get("email_dialog.prefs_not_set_title"));
 
            GeneralPreferencesDialog preferencesDialog = GeneralPreferencesDialog.getDialog();
            preferencesDialog.setActiveTab(GeneralPreferencesDialog.MAIL_TAB);
            preferencesDialog.showDialog();
     
            return;
        }
   
   
View Full Code Here

Examples of com.openbravo.pos.payment.JPaymentSelect.showDialog()

                    paymentdialog.setPrintSelected((!m_App.getProperties().getProperty("machine.printerenabled").equals("false"))
                                                && "true".equals(m_jbtnconfig.getProperty("printselected", "true")));

                    paymentdialog.setTransactionID(ticket.getTransactionID());

                    if (paymentdialog.showDialog(ticket.getTotal(), ticket.getCustomer(), ticket.getDateReturn(), ticket.isPressing())) {

                        // assign the payments selected and calculate taxes.        
                        ticket.setPayments(paymentdialog.getSelectedPayments());

                        // Asigno los valores definitivos del ticket...
View Full Code Here

Examples of com.samskivert.swing.JInternalDialog.showDialog()

        if (title != null) {
            dialog.setTitle(title);
        }
        setContent(dialog, content);
        SwingUtil.centerComponent(frame, dialog);
        dialog.showDialog();
        return dialog;
    }

    /**
     * Sets the content panel of the supplied internal dialog.
View Full Code Here

Examples of com.tensegrity.wpalo.client.ui.mvc.account.AdminHelpDialog.showDialog()

                  }
                  message += constants.adminHintEditorRoleMissing();                 
                }
                if (!message.isEmpty()) {
                  AdminHelpDialog dia = new AdminHelpDialog(message, userId);
                  dia.showDialog();
                }
              }
             
              public void onFailure(Throwable arg0) {
                if (lastCreatedUser.getAccountIDs() == null ||
View Full Code Here

Examples of com.tulskiy.musique.gui.dialogs.ColumnDialog.showDialog()

        headerMenu.add(menuItem).addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                PlaylistColumn column = new PlaylistColumn();
                ColumnDialog dialog = new ColumnDialog(getParentFrame(), "Add Column", column);
                if (dialog.showDialog()) {
                    saveColumns();
                    columns.add(column);
                    createDefaultColumnsFromModel();
                }
            }
View Full Code Here

Examples of de.mindcrimeilab.xsanalyzer.ui.InspectTypeDialog.showDialog()

    @SuppressWarnings("unchecked")
    @Override
    public void execute(Map parameters) {
        InspectTypeDialog dialog = new InspectTypeDialog((XSObject) parameters.get(TARGET_OBJECT));
        dialog.setParentComponent(Application.instance().getActiveWindow().getControl());
        dialog.showDialog();
    }
}
View Full Code Here

Examples of de.mindcrimeilab.xsanalyzer.ui.TypeHierarchyDialog.showDialog()

    @SuppressWarnings("unchecked")
    @Override
    public void execute(Map parameters) {
        TypeHierarchyDialog dialog = new TypeHierarchyDialog((XSObject) parameters.get(TypeHierarchyExecutor.TARGET_OBJECT));
        dialog.setParentComponent(Application.instance().getActiveWindow().getControl());
        dialog.showDialog();
    }
}
View Full Code Here

Examples of de.netsysit.view.FallBackChooserDialog.showDialog()

                } else {
                    list.add(p);
                    Object[] policies = list.toArray();

                    FallBackChooserDialog dlg = new FallBackChooserDialog();
                    dlg.showDialog(policies);
                    Object result = dlg.getResult();
                    if (result != null) {
                        PolicyModel fb = (PolicyModel) result;
                        if(fb.equals(p))
                            dbModel.getCurrentPolicy().setFallback(null);
View Full Code Here

Examples of de.netsysit.view.LevelChooserDialog.showDialog()

                            dbModel.setCurrentReceiverList(list);
                        }
                        break;
                    case POLICY:
                        LevelChooserDialog lcD = new LevelChooserDialog();
                        lcD.showDialog();
                        PolicyLevel result = lcD.getResult();
                        if(result != PolicyLevel.NONE) {
                            dbModel.setActiveLevel(result);
                            pc.createPolicy();
                        }
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.