-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert AutoLinkFilesAction to JavaFX (#4822)
* Convert AutoLinkFilesAction to JavaFX Fixes #4819. * Convert a few more dialogs to JavaFX
- Loading branch information
1 parent
85e684b
commit 05eaa64
Showing
11 changed files
with
153 additions
and
297 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
52 changes: 0 additions & 52 deletions
52
src/main/java/org/jabref/gui/actions/AutoLinkFilesAction.java
This file was deleted.
Oops, something went wrong.
68 changes: 68 additions & 0 deletions
68
src/main/java/org/jabref/gui/externalfiles/AutoLinkFilesAction.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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package org.jabref.gui.externalfiles; | ||
|
||
import java.util.List; | ||
|
||
import javafx.concurrent.Task; | ||
|
||
import org.jabref.gui.DialogService; | ||
import org.jabref.gui.JabRefFrame; | ||
import org.jabref.gui.actions.SimpleCommand; | ||
import org.jabref.gui.externalfiletype.ExternalFileTypes; | ||
import org.jabref.gui.undo.NamedCompound; | ||
import org.jabref.logic.l10n.Localization; | ||
import org.jabref.model.entry.BibEntry; | ||
import org.jabref.preferences.JabRefPreferences; | ||
|
||
/** | ||
* This Action may only be used in a menu or button. | ||
* Never in the entry editor. FileListEditor and EntryEditor have other ways to update the file links | ||
*/ | ||
public class AutoLinkFilesAction extends SimpleCommand { | ||
|
||
private final DialogService dialogService; | ||
private final JabRefFrame frame; | ||
private final JabRefPreferences preferences; | ||
|
||
public AutoLinkFilesAction(JabRefFrame frame, JabRefPreferences preferences) { | ||
this.frame = frame; | ||
this.dialogService = frame.getDialogService(); | ||
this.preferences = preferences; | ||
} | ||
|
||
@Override | ||
public void execute() { | ||
List<BibEntry> entries = frame.getCurrentBasePanel().getSelectedEntries(); | ||
if (entries.isEmpty()) { | ||
dialogService.notify(Localization.lang("This operation requires one or more entries to be selected.")); | ||
return; | ||
} | ||
|
||
final NamedCompound nc = new NamedCompound(Localization.lang("Automatically set file links")); | ||
AutoSetFileLinksUtil util = new AutoSetFileLinksUtil(frame.getCurrentBasePanel().getBibDatabaseContext(), preferences.getFilePreferences(), preferences.getAutoLinkPreferences(), ExternalFileTypes.getInstance()); | ||
Task<List<BibEntry>> linkFilesTask = new Task<List<BibEntry>>() { | ||
@Override | ||
protected List<BibEntry> call() { | ||
return util.linkAssociatedFiles(entries, nc); | ||
} | ||
|
||
@Override | ||
protected void succeeded() { | ||
if (!getValue().isEmpty()) { | ||
if (nc.hasEdits()) { | ||
nc.end(); | ||
frame.getCurrentBasePanel().getUndoManager().addEdit(nc); | ||
} | ||
dialogService.notify(Localization.lang("Finished automatically setting external links.")); | ||
} else { | ||
dialogService.notify(Localization.lang("Finished automatically setting external links.") + " " + Localization.lang("No files found.")); | ||
} | ||
} | ||
}; | ||
|
||
dialogService.showProgressDialogAndWait( | ||
Localization.lang("Automatically setting file links"), | ||
Localization.lang("Searching for files"), | ||
linkFilesTask | ||
); | ||
} | ||
} |
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.