Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/JavaSwingSimpleExercise.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
132 changes: 132 additions & 0 deletions out/production/JavaSwingSimpleExercise/readme-part-4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
## Exercise 4: User Registration Form Application

### Description & Goal

Design a comprehensive registration form using `GridBagLayout`. Students will arrange multiple Swing components—text fields, password field, radio buttons, checkboxes, and a submit button—in a responsive grid. The goal is to practice advanced layout management and component integration.

### Code Breakdown

**Part 1: Field Declarations**
Define all UI components and layout constraints.

```java
public class RegistrationFormApp extends JFrame implements ActionListener {
private JTextField txtName; // User name input
private JTextField txtEmail; // User email input
private JPasswordField txtPassword; // Password input
private JRadioButton rbMale, rbFemale; // Gender selection
private JCheckBox cbJava, cbPython, cbCpp; // Interests selection
private JButton btnSubmit; // Submit form button
private GridBagConstraints gbc; // Layout constraints
}
```

*Explanation:* We declare fields for name, email, and password inputs; radio buttons for gender; checkboxes for interests; a submit button; and `GridBagConstraints` for positioning.

**Part 2: Constructor Setup**
Initialize components, configure `GridBagLayout`, and add items.

```java
public RegistrationFormApp() {
setTitle("User Registration");
setSize(500, 350);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);

JPanel panel = new JPanel(new GridBagLayout());
gbc = new GridBagConstraints();
gbc.insets = new Insets(5, 5, 5, 5);
gbc.fill = GridBagConstraints.HORIZONTAL;

// Row 0: Name label & field
gbc.gridx = 0; gbc.gridy = 0;
panel.add(new JLabel("Name:"), gbc);
gbc.gridx = 1;
txtName = new JTextField(20);
panel.add(txtName, gbc);

// Row 1: Email label & field
gbc.gridx = 0; gbc.gridy = 1;
panel.add(new JLabel("Email:"), gbc);
gbc.gridx = 1;
txtEmail = new JTextField(20);
panel.add(txtEmail, gbc);

// Row 2: Password label & field
gbc.gridx = 0; gbc.gridy = 2;
panel.add(new JLabel("Password:"), gbc);
gbc.gridx = 1;
txtPassword = new JPasswordField(20);
panel.add(txtPassword, gbc);

// Row 3: Gender selection
gbc.gridx = 0; gbc.gridy = 3;
panel.add(new JLabel("Gender:"), gbc);
gbc.gridx = 1;
rbMale = new JRadioButton("Male"); rbFemale = new JRadioButton("Female");
ButtonGroup bg = new ButtonGroup(); bg.add(rbMale); bg.add(rbFemale);
JPanel genderPanel = new JPanel(); genderPanel.add(rbMale); genderPanel.add(rbFemale);
panel.add(genderPanel, gbc);

// Row 4: Interests selection
gbc.gridx = 0; gbc.gridy = 4;
panel.add(new JLabel("Interests:"), gbc);
gbc.gridx = 1;
cbJava = new JCheckBox("Java"); cbPython = new JCheckBox("Python"); cbCpp = new JCheckBox("C++");
JPanel interestPanel = new JPanel();
interestPanel.add(cbJava); interestPanel.add(cbPython); interestPanel.add(cbCpp);
panel.add(interestPanel, gbc);

// Row 5: Submit button
gbc.gridx = 1; gbc.gridy = 5;
gbc.anchor = GridBagConstraints.CENTER;
btnSubmit = new JButton("Submit");
btnSubmit.addActionListener(this);
panel.add(btnSubmit, gbc);

add(panel);
}
```

*Explanation:* We configure `GridBagLayout` with padding, add labels and inputs sequentially by grid coordinates, and group related radio and checkbox components in sub-panels.

**Part 3: Event Handling**
Collect input values on submit and display them.

```java
@Override
public void actionPerformed(ActionEvent e) {
String name = txtName.getText();
String email = txtEmail.getText();
String gender = rbMale.isSelected() ? "Male" : rbFemale.isSelected() ? "Female" : "Unspecified";
String interests = "";
if (cbJava.isSelected()) interests += "Java ";
if (cbPython.isSelected()) interests += "Python ";
if (cbCpp.isSelected()) interests += "C++ ";

JOptionPane.showMessageDialog(this,
"Name: " + name + "\n" +
"Email: " + email + "\n" +
"Gender: " + gender + "\n" +
"Interests: " + interests,
"Registration Details", JOptionPane.INFORMATION_MESSAGE);
}
```

*Explanation:* On button press, we read each field's value, determine selected options, and show a summary dialog.

**Part 4: Application Entry Point**
Run the form on the Swing event thread.

```java
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new RegistrationFormApp().setVisible(true));
}
```

*Explanation:* Ensures safe creation and display of the GUI on the Event Dispatch Thread.
---
### output of the code:
<img src="images/img-4-1.png" alt="..." width="400"/>
<img src="images/img-4-2.png" alt="..." width="400"/>
<img src="images/img-4-3.png" alt="..." width="400"/>
Empty file removed part-1/E1.java
Empty file.
37 changes: 37 additions & 0 deletions part-1/images/ClickCounterApp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class ClickCounterApp extends JFrame implements ActionListener {
private JLabel counterLabel; // Displays the click count
private JButton clickButton; // Button to register clicks
private int count = 0; // Stores the current count

public ClickCounterApp() {
setTitle("Click Counter");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

counterLabel = new JLabel("Clicks: 0", SwingConstants.CENTER);
clickButton = new JButton("Click Me");
clickButton.addActionListener(this);

setLayout(new BorderLayout());
add(counterLabel, BorderLayout.CENTER);
add(clickButton, BorderLayout.SOUTH);
}

@Override
public void actionPerformed(ActionEvent e) {
count++; // Increment the click counter
counterLabel.setText("Clicks: " + count);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
ClickCounterApp app = new ClickCounterApp();
app.setVisible(true);
});
}
}
Empty file removed part-2/E2.java
Empty file.
48 changes: 48 additions & 0 deletions part-2/images/GreetingFormApp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class GreetingFormApp extends JFrame implements ActionListener {
private JTextField nameField; // Field for user input
private JButton greetButton; // Button to trigger greeting
private JLabel messageLabel; // Label to display greeting

public GreetingFormApp() {
setTitle("Greeting Form");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

nameField = new JTextField(15);
greetButton = new JButton("Greet");
messageLabel = new JLabel("Enter your name and press Greet.", SwingConstants.CENTER);

greetButton.addActionListener(this);

JPanel inputPanel = new JPanel();
inputPanel.add(new JLabel("Name:"));
inputPanel.add(nameField);
inputPanel.add(greetButton);

setLayout(new BorderLayout());
add(inputPanel, BorderLayout.NORTH);
add(messageLabel, BorderLayout.CENTER);
}

@Override
public void actionPerformed(ActionEvent e) {
String name = nameField.getText().trim();
if (name.isEmpty()) {
messageLabel.setText("Please enter a name.");
} else {
messageLabel.setText("Hello, " + name + "!");
}
}

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
GreetingFormApp app = new GreetingFormApp();
app.setVisible(true);
});
}
}
Empty file removed part-3/E3.java
Empty file.
56 changes: 56 additions & 0 deletions part-3/images/ThemeColorSelectorApp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class ThemeColorSelectorApp extends JFrame implements ActionListener {
private JPanel mainPanel; // The panel whose background will change
private JButton redButton; // Button to select red theme
private JButton greenButton; // Button to select green theme
private JButton blueButton; // Button to select blue theme

public ThemeColorSelectorApp() {
setTitle("Theme Color Selector");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(400, 300); // Added a default size

mainPanel = new JPanel();

redButton = new JButton("Red");
greenButton = new JButton("Green");
blueButton = new JButton("Blue");

redButton.setActionCommand("RED");
greenButton.setActionCommand("GREEN");
blueButton.setActionCommand("BLUE");

redButton.addActionListener(this);
greenButton.addActionListener(this);
blueButton.addActionListener(this);

JPanel buttonPanel = new JPanel();
buttonPanel.add(redButton);
buttonPanel.add(greenButton);
buttonPanel.add(blueButton);

setLayout(new BorderLayout());
add(buttonPanel, BorderLayout.NORTH);
add(mainPanel, BorderLayout.CENTER);
}

@Override
public void actionPerformed(ActionEvent e) {
switch (e.getActionCommand()) {
case "RED": mainPanel.setBackground(Color.RED); break;
case "GREEN": mainPanel.setBackground(Color.GREEN); break;
case "BLUE": mainPanel.setBackground(Color.BLUE); break;
}
}

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
ThemeColorSelectorApp app = new ThemeColorSelectorApp();
app.setVisible(true);
});
}
}
Empty file removed part-4/E4.java
Empty file.
Loading