-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
208 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,5 +50,4 @@ private void saveTextToFile(String content, File file) { | |
} | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
src/main/java/com/kagu/edit/jkagu/conf/model/MuliLineSearchContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
package com.kagu.edit.jkagu.conf.model; | ||
|
||
import javafx.scene.control.RadioButton; | ||
|
||
import javafx.scene.control.TextField; | ||
import javafx.scene.layout.HBox; | ||
|
||
public record MuliLineSearchContext(RadioButton useSelectedLinesMultiline, | ||
TextField searchFieldFrom, | ||
public record MuliLineSearchContext(TextField searchFieldFrom, | ||
TextField searchFieldUntil, | ||
HBox searchFromUntilContainer) { | ||
} |
3 changes: 1 addition & 2 deletions
3
src/main/java/com/kagu/edit/jkagu/conf/model/QuerySearchContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package com.kagu.edit.jkagu.conf.model; | ||
|
||
import javafx.scene.control.ComboBox; | ||
import javafx.scene.control.RadioButton; | ||
import javafx.scene.layout.HBox; | ||
|
||
public record QuerySearchContext (RadioButton useAdvancedSelect, HBox searchComboBoxContainer, ComboBox<String> searchComboBox) {} | ||
public record QuerySearchContext (HBox searchComboBoxContainer, ComboBox<String> searchComboBox) {} |
4 changes: 1 addition & 3 deletions
4
src/main/java/com/kagu/edit/jkagu/conf/model/SingleLineSearchContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
package com.kagu.edit.jkagu.conf.model; | ||
|
||
import javafx.scene.control.RadioButton; | ||
import javafx.scene.control.TextField; | ||
import javafx.scene.layout.HBox; | ||
|
||
public record SingleLineSearchContext(RadioButton useSelectedLines, | ||
TextField searchField, | ||
public record SingleLineSearchContext(TextField searchField, | ||
HBox searchFieldContainer) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.