Moves some classes

This commit is contained in:
Guillaume Tâche
2024-09-16 20:01:12 +02:00
parent 233b4bdb77
commit 17086a87ef
57 changed files with 242 additions and 180 deletions

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.main;
/**
* Controller for the main view

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.main;
/**
* Model for the main view

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.media;
/**
* Controller for the media view

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.media;
import com.github.gtache.autosubtitle.Video;
import com.github.gtache.autosubtitle.subtitle.EditableSubtitle;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.parameters;
/**
* Controller for the parameters view

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.parameters;
import com.github.gtache.autosubtitle.subtitle.OutputFormat;
import com.github.gtache.autosubtitle.subtitle.extractor.ExtractionModel;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.setup;
/**
* Controller for the setup view

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.setup;
import com.github.gtache.autosubtitle.setup.SetupStatus;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.subtitles;
import com.github.gtache.autosubtitle.Language;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.subtitles;
import com.github.gtache.autosubtitle.Language;
import com.github.gtache.autosubtitle.VideoInfo;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.work;
import java.nio.file.Path;
@@ -18,7 +18,7 @@ public interface WorkController {
* @param file The path to the video
*/
void loadVideo(final Path file);
/**
* @return The model
*/

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.work;
import com.github.gtache.autosubtitle.Video;
import com.github.gtache.autosubtitle.subtitle.SubtitleCollection;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.autosubtitle.gui;
package com.github.gtache.autosubtitle.gui.work;
/**
* Possible statuses for the work controller

View File

@@ -4,4 +4,10 @@
module com.github.gtache.autosubtitle.gui.api {
requires transitive com.github.gtache.autosubtitle.api;
exports com.github.gtache.autosubtitle.gui;
exports com.github.gtache.autosubtitle.gui.main;
exports com.github.gtache.autosubtitle.gui.media;
exports com.github.gtache.autosubtitle.gui.parameters;
exports com.github.gtache.autosubtitle.gui.setup;
exports com.github.gtache.autosubtitle.gui.subtitles;
exports com.github.gtache.autosubtitle.gui.work;
}