gbc_feedSettingsButtonPanel.gridx = 0;
gbc_feedSettingsButtonPanel.gridy = 1;
feedSettingsPanel.add(feedSettingsButtonPanel, gbc_feedSettingsButtonPanel);
JButton btnAddFeed = new JButton("Add Feed");
btnAddFeed.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
String inputLabel = JOptionPane.showInputDialog(frame, "Enter the feed name: ");
String inputURL = JOptionPane.showInputDialog(frame, "Enter the feed URL: ");
String inputPriority = JOptionPane.showInputDialog(frame, "Enter the feed priority: ");
try {