Examples of HelpedLabel


Examples of nu.lazy8.util.help.HelpedLabel

    AddDateComponents(jp, helpFile);
    resetDate((java.util.Date) cc.comboBoxPeriod.getSelectedItemsKey(),
        (java.util.Date) cc.comboBoxPeriod.getSelectedItemsSecondaryKey());

    jp.add(new HelpedLabel(Translator.getTranslation("Report title"), "ReportTitle", helpfile, view));
    jTextField3 = new HelpedTextField("ReportTitle", helpfile, view);
    jTextField3.setText(SetupInfo.getProperty(sReportTitle));
    jp.add(jTextField3);

    jp.add(new HelpedLabel(Translator.getTranslation("Report header image"), "headerimage", helpfile, view));
    JPanel jpImage = new JPanel();
    jpImage.setLayout(new BoxLayout(jpImage, BoxLayout.X_AXIS));
    jTextField4 = new HelpedTextField("headerimage", helpfile, view);
    jpImage.add(jTextField4);
    jTextField4.setText(SetupInfo.getProperty(SetupInfo.REPORTIMAGE));
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

   *  Description of the Method
   *
   * @param  jp  Description of the Parameter
   */
  public void AddReportSelectionToPane(JPanel jp) {
    jp.add(new HelpedLabel(Translator.getTranslation("Report"), "Reports", helpfile, view));
    jp.add(jReports);
  }//}}}
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    sFilePattern = sFilePatternin;
    jReports = new HelpedComboBox("Reports", helpfile, view);
    jReports.setMaximumRowCount(9);
    jReports.addItemListener(this);
    jp.add(new HelpedLabel(Translator.getTranslation("Report"), "Reports", helpfile, view));
    jp.add(jReports);
    JButton b11 = new HelpedButton(Translator.getTranslation("Save"),
        "Save", helpfile, view);
    jp.add(b11);
    b11.addActionListener(
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    add(tabbedPane, BorderLayout.CENTER);

    //Center panel
    JPanel centerPanel = new JPanel();
    centerPanel.setLayout(new BorderLayout());
    centerPanel.add(new HelpedLabel(Translator.getTranslation("Select Fields to export"),
        "fields", "export", view), BorderLayout.NORTH);

    list = new JList(createData(saveFields));

    list.setCellRenderer(new CheckListRenderer());
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    //{{{ +*getExample()* : String
    public abstract String getExample();//}}}

    //{{{ #initializePanel() : void
    protected void initializePanel() {
      example = new HelpedLabel("", FieldPrefix + "example", "exportoptions", view);
      formatRadioButtons = new HelpedRadioButton[radioLabels.length];
      ButtonGroup group1 = new ButtonGroup();
      RadioFormatListener myListener1 = new RadioFormatListener();

      setLayout(new GridLayout(radioLabels.length + 1, 1));
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    lastUsedCsvFileRow = 1;
    JScrollPane inFieldListScrollPane = new JScrollPane();
    inFieldListScrollPane.getViewport().setView(dataList);
    inFieldListScrollPane.setPreferredSize(new Dimension(70, 70));
    westwestPanel.add(inFieldListScrollPane, BorderLayout.CENTER);
    westwestPanel.add(new HelpedLabel(Translator.getTranslation("Fields from the csv file"),
        "csvfields", "import", view), BorderLayout.NORTH);
    westMainPanel.add(westwestPanel, BorderLayout.WEST);
    JPanel westSouthButtonPanel = new JPanel();
    westSouthButtonPanel.setLayout(new GridLayout(2, 2));
    westSouthButtonPanel.add(new JPanel());
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    reportFont.addMouseListener(l1);

    JPanel jpFont = new JPanel();
    jpFont.setLayout(new BorderLayout());

    jpFont.add(new HelpedLabel(Translator.getTranslation("Font used in reports (font name only)"),
        "reportfont", "setup", view), BorderLayout.WEST);
    jpFont.add(reportFont, BorderLayout.CENTER);
    addComponent(jpFont);

    menuButtonLevels = new JRadioButton[NUM_MENU_LEVELS];
    addComponent(createMenuSelectionPanel(menuButtonLevels, view));
    textField5 = new HelpedTextField("WordProcesser", "setup", view);

    JButton butLang = new HelpedButton(Translator.getTranslation("Default language"),
        "Languages", "setup", view);
    addComponent(butLang);
    butLang.addActionListener(
      new java.awt.event.ActionListener() {
        //{{{ +actionPerformed(java.awt.event.ActionEvent) : void
        public void actionPerformed(java.awt.event.ActionEvent evt) {
          //Get file name
          new ChangeLanguagesDialogs(view, true);
        }//}}}
      }
        );

    JPanel jpSearch = new JPanel();
    jpSearch.setLayout(new BorderLayout());

    jpSearch.add(new HelpedLabel(Translator.getTranslation("External word processor"),
        "WordProcesser", "setup", view), BorderLayout.WEST);

    JButton butsearch = new HelpedButton(Translator.getTranslation("Browse"),
        "Browse", "setup", view);
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    wholeSouth.setLayout(new GridLayout(2, 1));
    JPanel panelLanguages = new JPanel();
    panelLanguages.setLayout(new GridLayout(2, 2));
    wholeSouth.add(panelLanguages);

    panelLanguages.add(new HelpedLabel(Translator.getTranslation("Default language"),
        "Languages", "setup", null));
    jLangCombo = new JComboBox();
    panelLanguages.add(jLangCombo);
    langKey = new ArrayList();
    JComboBox[] boxes = new JComboBox[1];
View Full Code Here

Examples of nu.lazy8.util.help.HelpedLabel

    wholeSouth.setLayout(new GridLayout(2, 1));
    JPanel panelLanguages = new JPanel();
    panelLanguages.setLayout(new GridLayout(2, 2));
    wholeSouth.add(panelLanguages);

    panelLanguages.add(new HelpedLabel(Translator.getTranslation("Default language"),
        "Languages", "setup", null));
    jLangCombo = new JComboBox();
    panelLanguages.add(jLangCombo);

    langKey = new ArrayList();
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.