1
0
Fork 0
mirror of https://gitlab.com/kauron/jstudy synced 2025-06-07 22:27:52 +02:00

Removed JFoenix library

This commit is contained in:
Carlos Galindo 2019-09-12 19:55:45 +02:00
parent 62634a1800
commit 0d4b50a78c
Signed by: kauron
GPG key ID: 83E68706DEE119A3
5 changed files with 6 additions and 15 deletions

View file

@ -1,16 +1,16 @@
package es.kauron.jstudy.controller;
import com.jfoenix.controls.JFXCheckBox;
import es.kauron.jstudy.model.AppPrefs;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.CheckBox;
import java.net.URL;
import java.util.ResourceBundle;
public class SettingsController implements Initializable {
@FXML
private JFXCheckBox repeatMistakes, showFeedback, repeatImmediately;
private CheckBox repeatMistakes, showFeedback, repeatImmediately;
@Override
public void initialize(URL location, ResourceBundle resources) {

View file

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import com.jfoenix.controls.JFXCheckBox?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.layout.VBox?>
<VBox alignment="CENTER_LEFT" spacing="15.0" xmlns="http://javafx.com/javafx/8.0.76-ea"
xmlns:fx="http://javafx.com/fxml/1" fx:controller="es.kauron.jstudy.controller.SettingsController">
<children>
<JFXCheckBox fx:id="repeatMistakes" text="_Repeat mistakes"/>
<JFXCheckBox fx:id="repeatImmediately" text="_Always repeat immediately"/>
<JFXCheckBox fx:id="showFeedback" text="Show _feedback while testing"/>
<CheckBox fx:id="repeatMistakes" text="_Repeat mistakes"/>
<CheckBox fx:id="repeatImmediately" text="_Always repeat immediately"/>
<CheckBox fx:id="showFeedback" text="Show _feedback while testing"/>
</children>
<padding>
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0"/>