Lines Matching refs:panel

68  * The panel that allows the user to specify when a task will be launched.
165 * Creates the layout of the panel (but the contents are not populated here).
750 JPanel panel = new JPanel(new GridBagLayout());
751 panel.setOpaque(false);
890 panel.add(labels[i], gbc);
893 panel.add(comps[i], gbc);
897 panel.add(Box.createHorizontalGlue(), gbc);
906 panel.add(Utilities.createInlineHelpLabel(inlineHelp[i]), gbc);
916 panel.add(Box.createVerticalGlue(), gbc);
918 return panel;
923 JPanel panel = new JPanel(new GridBagLayout());
924 panel.setOpaque(false);
940 panel.add(lDailyTime, gbc);
944 panel.add(dailyTime, gbc);
949 panel.add(Box.createHorizontalGlue(), gbc);
956 panel.add(Utilities.createInlineHelpLabel(
959 return panel;
964 JPanel panel = new JPanel(new GridBagLayout());
965 panel.setOpaque(false);
990 panel.add(lWeeklyTime, gbc);
995 panel.add(weeklyTime, gbc);
1001 panel.add(Box.createHorizontalGlue(), gbc);
1007 panel.add(Utilities.createInlineHelpLabel(
1014 panel.add(lWeeklyDays, gbc);
1020 panel.add(cb, gbc);
1026 panel.add(Box.createHorizontalGlue(), gbc);
1028 return panel;
1033 JPanel panel = new JPanel(new GridBagLayout());
1034 panel.setOpaque(false);
1053 panel.add(lMonthlyTime, gbc);
1058 panel.add(monthlyTime, gbc);
1064 panel.add(Box.createHorizontalGlue(), gbc);
1070 panel.add(Utilities.createInlineHelpLabel(
1078 panel.add(lMonthlyDays, gbc);
1100 panel.add(monthDays[i], gbc);
1107 panel.add(Box.createHorizontalGlue(), gbc);
1109 return panel;
1114 JPanel panel = new JPanel(new GridBagLayout());
1115 panel.setOpaque(false);
1125 panel.add(explanation, gbc);
1178 panel.add(labels[i], gbc);
1181 panel.add(comps[i], gbc);
1185 panel.add(Box.createHorizontalGlue(), gbc);
1192 panel.add(Utilities.createInlineHelpLabel(help[i]), gbc);
1202 panel.add(Box.createVerticalGlue(), gbc);
1204 return panel;
1208 * The main method to test this panel.