Package com.jgoodies.forms.builder

Examples of com.jgoodies.forms.builder.DefaultFormBuilder.nextLine()


    JLabel lab = new JLabel(Globals.lang("Main file directory") + ":");
    builder.append(lab);
    builder.append(fileDir);
    browse = new BrowseAction(_frame, fileDir, true);
    builder.append(new JButton(browse));
    builder.nextLine();


    builder.append(new JPanel());
        builder.append(matchStartsWithKey, 3);
        builder.nextLine();
View Full Code Here


    builder.nextLine();


    builder.append(new JPanel());
        builder.append(matchStartsWithKey, 3);
        builder.nextLine();
        builder.append(new JPanel());
        builder.append(matchExactKeyOnly, 3);
        builder.nextLine();
        builder.append(new JPanel());
        builder.append(useRegExpComboBox);
View Full Code Here

    builder.append(new JPanel());
        builder.append(matchStartsWithKey, 3);
        builder.nextLine();
        builder.append(new JPanel());
        builder.append(matchExactKeyOnly, 3);
        builder.nextLine();
        builder.append(new JPanel());
        builder.append(useRegExpComboBox);
    builder.append(regExpTextField);
    HelpAction helpAction = new HelpAction(helpDialog, GUIGlobals.regularExpressionSearchHelp,
      Globals.lang("Help on Regular Expression Search"), GUIGlobals.getIconUrl("helpSmall"));
View Full Code Here

        builder.append(useRegExpComboBox);
    builder.append(regExpTextField);
    HelpAction helpAction = new HelpAction(helpDialog, GUIGlobals.regularExpressionSearchHelp,
      Globals.lang("Help on Regular Expression Search"), GUIGlobals.getIconUrl("helpSmall"));
    builder.append(helpAction.getIconButton());
    builder.nextLine();
        builder.append(new JPanel());
        builder.append(runAutoFileSearch, 3);
        builder.nextLine();
    builder.appendSeparator(Globals.lang("Legacy file fields"));
    pan = new JPanel();
View Full Code Here

      Globals.lang("Help on Regular Expression Search"), GUIGlobals.getIconUrl("helpSmall"));
    builder.append(helpAction.getIconButton());
    builder.nextLine();
        builder.append(new JPanel());
        builder.append(runAutoFileSearch, 3);
        builder.nextLine();
    builder.appendSeparator(Globals.lang("Legacy file fields"));
    pan = new JPanel();
    builder.append(pan);   
    builder.append(new JLabel("<html>"+Globals.lang("Note that these settings are used for the legacy "
      +"<b>pdf</b> and <b>ps</b> fields only.<br>For most users, setting the <b>Main file directory</b> "
View Full Code Here

    pan = new JPanel();
    builder.append(pan);   
    builder.append(new JLabel("<html>"+Globals.lang("Note that these settings are used for the legacy "
      +"<b>pdf</b> and <b>ps</b> fields only.<br>For most users, setting the <b>Main file directory</b> "
      +"above should be sufficient.")+"</html>"), 5);
    builder.nextLine();
    pan = new JPanel();
    builder.append(pan);
    lab = new JLabel(Globals.lang("Main PDF directory") + ":");
    builder.append(lab);
    builder.append(pdfDir);
View Full Code Here

    lab = new JLabel(Globals.lang("Main PDF directory") + ":");
    builder.append(lab);
    builder.append(pdfDir);
    browse = new BrowseAction(_frame, pdfDir, true);
    builder.append(new JButton(browse));
    builder.nextLine();

        pan = new JPanel();
    builder.append(pan);
    lab = new JLabel(Globals.lang("Main PS directory") + ":");
    builder.append(lab);
View Full Code Here

    lab = new JLabel(Globals.lang("Main PS directory") + ":");
    builder.append(lab);
    builder.append(psDir);
    browse = new BrowseAction(_frame, psDir, true);
    builder.append(new JButton(browse));
    builder.nextLine();
    builder.appendSeparator(Globals.lang("External programs"));

    builder.nextLine();
   
        addSettingsButton(new PushToLyx(), builder);
View Full Code Here

    browse = new BrowseAction(_frame, psDir, true);
    builder.append(new JButton(browse));
    builder.nextLine();
    builder.appendSeparator(Globals.lang("External programs"));

    builder.nextLine();
   
        addSettingsButton(new PushToLyx(), builder);
        addSettingsButton(new PushToEmacs(), builder);
        addSettingsButton(new PushToWinEdt(), builder);
        addSettingsButton(new PushToVim(), builder);
View Full Code Here

    builder.setDefaultDialogBorder();
    setMainComponent(builder.getPanel());
   
    firstNameTextField = new JTextField(20);
    firstNameLabel = builder.append("", firstNameTextField);
    builder.nextLine();

    lastNameTextField = new JTextField(20);
    lastNameLabel = builder.append("", lastNameTextField);
    builder.nextLine();
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.