|
|
@ -11,19 +11,19 @@ import javax.swing.DefaultListModel; |
|
|
|
import javax.swing.ImageIcon; |
|
|
|
import javax.swing.JFileChooser; |
|
|
|
import javax.swing.JOptionPane; |
|
|
|
import javax.swing.JScrollPane; |
|
|
|
import javax.swing.JSplitPane; |
|
|
|
import javax.swing.JButton; |
|
|
|
import javax.swing.JTextField; |
|
|
|
|
|
|
|
import java.awt.Graphics2D; |
|
|
|
import java.awt.GridLayout; |
|
|
|
import java.awt.GridBagLayout; |
|
|
|
import java.awt.GridBagConstraints; |
|
|
|
import java.awt.Insets; |
|
|
|
import java.awt.RenderingHints; |
|
|
|
|
|
|
|
import javax.swing.JList; |
|
|
|
import javax.swing.JTextPane; |
|
|
|
import javax.swing.JTextArea; |
|
|
|
import javax.swing.JLabel; |
|
|
|
import java.awt.Font; |
|
|
|
import javax.swing.border.LineBorder; |
|
|
@ -38,6 +38,8 @@ import ksiazka.kucharska.RetrieveData; |
|
|
|
import javax.swing.event.ListSelectionListener; |
|
|
|
import javax.swing.event.ListSelectionEvent; |
|
|
|
import javax.swing.filechooser.FileNameExtensionFilter; |
|
|
|
import javax.swing.ScrollPaneConstants; |
|
|
|
import java.awt.Dimension; |
|
|
|
|
|
|
|
public class FrmMain extends JFrame { |
|
|
|
|
|
|
@ -51,10 +53,8 @@ public class FrmMain extends JFrame { |
|
|
|
public static JTextField txtTags; |
|
|
|
private JButton btnSave; |
|
|
|
private JButton btnCancel; |
|
|
|
public static JTextPane txtIngredients; |
|
|
|
public static JTextPane txtDescription; |
|
|
|
public static JTextArea txtDescription; |
|
|
|
private JButton btnAddRecipe; |
|
|
|
private JButton btnSearch; |
|
|
|
private JButton btnDelRecipe; |
|
|
|
private JButton btnLoadImg; |
|
|
|
public static JLabel lblRecipeTitle; |
|
|
@ -63,13 +63,16 @@ public class FrmMain extends JFrame { |
|
|
|
private JFileChooser fcImg; |
|
|
|
public static ImageIcon imgDefaultRecipe; |
|
|
|
private JList recipesList; |
|
|
|
private JScrollPane scrollPane_1; |
|
|
|
public static JTextArea txtIngredients; |
|
|
|
private JScrollPane scrollPane_2; |
|
|
|
|
|
|
|
void DeactivateAddMenu() { |
|
|
|
btnAddRecipe.setEnabled(true); |
|
|
|
btnCancel.setVisible(false); |
|
|
|
btnDelRecipe.setEnabled(true); |
|
|
|
btnLoadImg.setVisible(false); |
|
|
|
btnSearch.setEnabled(true); |
|
|
|
txtSearch.setEnabled(true); |
|
|
|
btnSave.setVisible(false); |
|
|
|
txtDescription.setEditable(false); |
|
|
|
txtEdTitle.setVisible(false); |
|
|
@ -84,7 +87,7 @@ public class FrmMain extends JFrame { |
|
|
|
btnCancel.setVisible(true); |
|
|
|
btnDelRecipe.setEnabled(false); |
|
|
|
btnLoadImg.setVisible(true); |
|
|
|
btnSearch.setEnabled(false); |
|
|
|
txtSearch.setEnabled(false); |
|
|
|
btnSave.setVisible(true); |
|
|
|
txtDescription.setEditable(true); |
|
|
|
txtEdTitle.setVisible(true); |
|
|
@ -121,39 +124,34 @@ public class FrmMain extends JFrame { |
|
|
|
setContentPane(contentPane); |
|
|
|
|
|
|
|
JSplitPane splitPane = new JSplitPane(); |
|
|
|
splitPane.setResizeWeight(0.18); |
|
|
|
splitPane.setRequestFocusEnabled(false); |
|
|
|
splitPane.setPreferredSize(new Dimension(200, 27)); |
|
|
|
splitPane.setDividerSize(5); |
|
|
|
splitPane.setEnabled(false); |
|
|
|
splitPane.setResizeWeight(0.1); |
|
|
|
contentPane.add(splitPane, BorderLayout.CENTER); |
|
|
|
|
|
|
|
JPanel panel = new JPanel(); |
|
|
|
panel.setMaximumSize(new Dimension(100, 32767)); |
|
|
|
splitPane.setLeftComponent(panel); |
|
|
|
GridBagLayout gbl_panel = new GridBagLayout(); |
|
|
|
gbl_panel.columnWidths = new int[] {0, 30}; |
|
|
|
gbl_panel.columnWidths = new int[] {0, 0}; |
|
|
|
gbl_panel.rowHeights = new int[] {0, 0, 0}; |
|
|
|
gbl_panel.columnWeights = new double[]{1.0, 0.0}; |
|
|
|
gbl_panel.columnWeights = new double[]{1.0, 1.0}; |
|
|
|
gbl_panel.rowWeights = new double[]{0.0, 1.0, 0.0}; |
|
|
|
panel.setLayout(gbl_panel); |
|
|
|
|
|
|
|
txtSearch = new JTextField(); |
|
|
|
txtSearch.setText("wpisz tytuł/tagi..."); |
|
|
|
GridBagConstraints gbc_txtSearch = new GridBagConstraints(); |
|
|
|
gbc_txtSearch.insets = new Insets(0, 0, 5, 5); |
|
|
|
gbc_txtSearch.gridwidth = 2; |
|
|
|
gbc_txtSearch.insets = new Insets(5, 5, 5, 0); |
|
|
|
gbc_txtSearch.fill = GridBagConstraints.HORIZONTAL; |
|
|
|
gbc_txtSearch.gridx = 0; |
|
|
|
gbc_txtSearch.gridy = 0; |
|
|
|
panel.add(txtSearch, gbc_txtSearch); |
|
|
|
txtSearch.setColumns(10); |
|
|
|
|
|
|
|
btnSearch = new JButton("Szukaj"); |
|
|
|
GridBagConstraints gbc_btnSearch = new GridBagConstraints(); |
|
|
|
gbc_btnSearch.anchor = GridBagConstraints.NORTH; |
|
|
|
gbc_btnSearch.fill = GridBagConstraints.HORIZONTAL; |
|
|
|
gbc_btnSearch.insets = new Insets(0, 0, 5, 0); |
|
|
|
gbc_btnSearch.gridx = 1; |
|
|
|
gbc_btnSearch.gridy = 0; |
|
|
|
panel.add(btnSearch, gbc_btnSearch); |
|
|
|
|
|
|
|
recipesListModel = new DefaultListModel(); |
|
|
|
recipesList = new JList(recipesListModel); |
|
|
|
recipesList.addListSelectionListener(new ListSelectionListener() { |
|
|
@ -162,34 +160,39 @@ public class FrmMain extends JFrame { |
|
|
|
RetrieveData.fillComponents(recipesList.getSelectedValue().toString()); |
|
|
|
} |
|
|
|
}); |
|
|
|
GridBagConstraints gbc_recipesList = new GridBagConstraints(); |
|
|
|
gbc_recipesList.insets = new Insets(0, 0, 5, 0); |
|
|
|
gbc_recipesList.gridwidth = 2; |
|
|
|
gbc_recipesList.fill = GridBagConstraints.BOTH; |
|
|
|
gbc_recipesList.gridx = 0; |
|
|
|
gbc_recipesList.gridy = 1; |
|
|
|
panel.add(recipesList, gbc_recipesList); |
|
|
|
|
|
|
|
scrollPane_2 = new JScrollPane(); |
|
|
|
scrollPane_2.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); |
|
|
|
scrollPane_2.setMaximumSize(new Dimension(100, 100)); |
|
|
|
scrollPane_2.setViewportView(recipesList); |
|
|
|
GridBagConstraints gbc_scrollPane_2 = new GridBagConstraints(); |
|
|
|
gbc_scrollPane_2.gridwidth = 2; |
|
|
|
gbc_scrollPane_2.insets = new Insets(0, 0, 5, 0); |
|
|
|
gbc_scrollPane_2.fill = GridBagConstraints.BOTH; |
|
|
|
gbc_scrollPane_2.gridx = 0; |
|
|
|
gbc_scrollPane_2.gridy = 1; |
|
|
|
panel.add(scrollPane_2, gbc_scrollPane_2); |
|
|
|
|
|
|
|
JPanel panel_1 = new JPanel(); |
|
|
|
GridBagConstraints gbc_panel_1 = new GridBagConstraints(); |
|
|
|
gbc_panel_1.gridwidth = 2; |
|
|
|
gbc_panel_1.gridheight = 0; |
|
|
|
gbc_panel_1.insets = new Insets(0, 0, 0, 5); |
|
|
|
gbc_panel_1.fill = GridBagConstraints.BOTH; |
|
|
|
gbc_panel_1.gridx = 0; |
|
|
|
gbc_panel_1.gridy = 2; |
|
|
|
panel.add(panel_1, gbc_panel_1); |
|
|
|
panel_1.setLayout(new GridLayout(0, 2, 0, 0)); |
|
|
|
|
|
|
|
btnAddRecipe = new JButton("Nowy"); |
|
|
|
GridBagConstraints gbc_btnAddRecipe = new GridBagConstraints(); |
|
|
|
gbc_btnAddRecipe.fill = GridBagConstraints.HORIZONTAL; |
|
|
|
gbc_btnAddRecipe.insets = new Insets(0, 5, 0, 5); |
|
|
|
gbc_btnAddRecipe.gridx = 0; |
|
|
|
gbc_btnAddRecipe.gridy = 2; |
|
|
|
panel.add(btnAddRecipe, gbc_btnAddRecipe); |
|
|
|
btnAddRecipe.addActionListener(new ActionListener() { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
ActivateAddMenu(); |
|
|
|
} |
|
|
|
}); |
|
|
|
panel_1.add(btnAddRecipe); |
|
|
|
|
|
|
|
btnDelRecipe = new JButton("Usuń"); |
|
|
|
GridBagConstraints gbc_btnDelRecipe = new GridBagConstraints(); |
|
|
|
gbc_btnDelRecipe.fill = GridBagConstraints.HORIZONTAL; |
|
|
|
gbc_btnDelRecipe.gridx = 1; |
|
|
|
gbc_btnDelRecipe.gridy = 2; |
|
|
|
panel.add(btnDelRecipe, gbc_btnDelRecipe); |
|
|
|
btnDelRecipe.addActionListener(new ActionListener() { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
DefaultListModel model = (DefaultListModel) recipesList.getModel(); |
|
|
@ -215,7 +218,6 @@ public class FrmMain extends JFrame { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
panel_1.add(btnDelRecipe); |
|
|
|
|
|
|
|
JPanel panel_2 = new JPanel(); |
|
|
|
splitPane.setRightComponent(panel_2); |
|
|
@ -242,15 +244,6 @@ public class FrmMain extends JFrame { |
|
|
|
panel_2.add(txtEdTitle); |
|
|
|
txtEdTitle.setColumns(10); |
|
|
|
|
|
|
|
txtIngredients = new JTextPane(); |
|
|
|
txtIngredients.setEditable(false); |
|
|
|
txtIngredients.setBounds(26, 88, 228, 126); |
|
|
|
panel_2.add(txtIngredients); |
|
|
|
|
|
|
|
txtDescription = new JTextPane(); |
|
|
|
txtDescription.setEditable(false); |
|
|
|
txtDescription.setBounds(26, 254, 410, 196); |
|
|
|
panel_2.add(txtDescription); |
|
|
|
|
|
|
|
lblRecipeTitle = new JLabel("Nazwa przepisu"); |
|
|
|
lblRecipeTitle.setFont(new Font("Dialog", Font.BOLD, 18)); |
|
|
@ -261,10 +254,6 @@ public class FrmMain extends JFrame { |
|
|
|
lblIngredients.setBounds(26, 61, 70, 15); |
|
|
|
panel_2.add(lblIngredients); |
|
|
|
|
|
|
|
JLabel lblDescription = new JLabel("Opis wykonania:"); |
|
|
|
lblDescription.setBounds(26, 227, 152, 15); |
|
|
|
panel_2.add(lblDescription); |
|
|
|
|
|
|
|
imgRecipe = new JLabel(""); |
|
|
|
imgRecipe.setHorizontalAlignment(SwingConstants.CENTER); |
|
|
|
imgRecipe.setBorder(new LineBorder(SystemColor.textHighlightText)); |
|
|
@ -312,6 +301,16 @@ public class FrmMain extends JFrame { |
|
|
|
} |
|
|
|
}); |
|
|
|
btnLoadImg.setVisible(false); |
|
|
|
|
|
|
|
JScrollPane scrollPane = new JScrollPane(); |
|
|
|
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); |
|
|
|
scrollPane.setBounds(26, 254, 410, 196); |
|
|
|
panel_2.add(scrollPane); |
|
|
|
|
|
|
|
txtDescription = new JTextArea(); |
|
|
|
txtDescription.setEditable(false); |
|
|
|
txtDescription.setLineWrap(true); |
|
|
|
scrollPane.setViewportView(txtDescription); |
|
|
|
btnLoadImg.setBounds(304, 217, 102, 25); |
|
|
|
panel_2.add(btnLoadImg); |
|
|
|
|
|
|
@ -337,7 +336,21 @@ public class FrmMain extends JFrame { |
|
|
|
btnCancel.setBounds(319, 46, 117, 25); |
|
|
|
panel_2.add(btnCancel); |
|
|
|
|
|
|
|
JLabel lblDescription = new JLabel("Opis wykonania:"); |
|
|
|
lblDescription.setBounds(26, 227, 152, 15); |
|
|
|
panel_2.add(lblDescription); |
|
|
|
|
|
|
|
scrollPane_1 = new JScrollPane(); |
|
|
|
scrollPane_1.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); |
|
|
|
scrollPane_1.setBounds(26, 88, 228, 126); |
|
|
|
panel_2.add(scrollPane_1); |
|
|
|
|
|
|
|
txtIngredients = new JTextArea(); |
|
|
|
txtIngredients.setEditable(false); |
|
|
|
txtIngredients.setLineWrap(true); |
|
|
|
scrollPane_1.setViewportView(txtIngredients); |
|
|
|
|
|
|
|
//RetrieveData.insertSampleData(); |
|
|
|
RetrieveData.fillList(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |