mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
e5ce6680ca
Following the refactoring that has been initiated in pdfmasher's "vala" branch, I pushed more progress window logic into the core. The UI code is now a bit dumber than it used to be, and the core now directly decides when the progress window is shown and hidden. The "job finished" notification is also directly sent by the core. Job description update logic is handled by a core gui textfield. Job description contsants also moved to the core, triggering a localisation migration from "ui" to "core".
10 lines
462 B
Python
10 lines
462 B
Python
from cocoa.inter import PyTextField, PyProgressWindow
|
|
from .deletion_options import PyDeletionOptions
|
|
from .details_panel import PyDetailsPanel
|
|
from .directory_outline import PyDirectoryOutline
|
|
from .prioritize_dialog import PyPrioritizeDialog
|
|
from .prioritize_list import PyPrioritizeList
|
|
from .problem_dialog import PyProblemDialog
|
|
from .ignore_list_dialog import PyIgnoreListDialog
|
|
from .result_table import PyResultTable
|
|
from .stats_label import PyStatsLabel |