all requierd methods implemented

This commit is contained in:
2026-07-16 20:58:49 +03:30
parent e66ca8e06f
commit 213b303337
+19
View File
@@ -1,6 +1,7 @@
package workshop; package workshop;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.control.Alert;
import javafx.scene.control.Label; import javafx.scene.control.Label;
import javafx.scene.control.Button; import javafx.scene.control.Button;
@@ -17,25 +18,43 @@ public class Controller {
@FXML @FXML
private void buyBasic() { private void buyBasic() {
// TODO: Call showAlert() with a message indicating the user entered the payment gateway // TODO: Call showAlert() with a message indicating the user entered the payment gateway
showAlert("Basic Plan Selected.");
} }
@FXML @FXML
private void buyPro() { private void buyPro() {
// TODO: Call showAlert() with a message indicating the user entered the payment gateway // TODO: Call showAlert() with a message indicating the user entered the payment gateway
showAlert("Pro Plan Selected.");
} }
@FXML @FXML
private void buyEnterprise() { private void buyEnterprise() {
// TODO: Call showAlert() with a message indicating the user entered the payment gateway // TODO: Call showAlert() with a message indicating the user entered the payment gateway
showAlert("Enterprise Plan Selected.");
} }
@FXML @FXML
private void toggleTheme() { private void toggleTheme() {
// TODO: Toggle the isDark flag. If dark, switch to style.css and set button text to "Switch to Light Mode" // TODO: Toggle the isDark flag. If dark, switch to style.css and set button text to "Switch to Light Mode"
isDark = !isDark;
themeToggle.getScene().getStylesheets().clear();
if (isDark) {
themeToggle.getScene().getStylesheets().add(getClass().getResource("light.css").toExternalForm());
themeToggle.setText("Switch to Dark Mode");
}
// TODO: If light, switch to light.css and set button text to "Switch to Dark Mode" // TODO: If light, switch to light.css and set button text to "Switch to Dark Mode"
else {
themeToggle.getScene().getStylesheets().add(getClass().getResource("style.css").toExternalForm());
themeToggle.setText("Switch to Light Mode");
}
} }
private void showAlert(String message) { private void showAlert(String message) {
// TODO: Create a new Alert of type INFORMATION with the given message and display it // TODO: Create a new Alert of type INFORMATION with the given message and display it
Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setHeaderText(message);
alert.show();
} }
} }