GUI
This module contains the implementation of the main GUI for the application.
image1dir
module-attribute
¶
image1dir: str = join(image_directory, 'Anilist-Manga-Updater-Logo2.png')
AccessTokenThread
¶
Bases: Thread
A class extending threading.Thread for obtaining Anilist API access tokens.
ATTRIBUTE | DESCRIPTION |
---|---|
stop |
bool Flag to control thread execution. Initially False.
|
METHOD | DESCRIPTION |
---|---|
run |
Overrides threading.Thread.run(). Checks global 'app' variable. If None, logs error. Otherwise calls Get_Access_Token(app). |
stop_thread |
Sets stop flag to True to terminate thread execution. |
The stop flag is initially set to False, indicating that the thread should not be stopped.
Source code in AnilistMangaUpdater/Main/GUI.py
run
¶
Run the Get_Access_Token function in the thread.
This method is called when the thread's start() method is invoked. It checks if the global 'app' variable is None. If it is, it logs an error and returns. Otherwise, it calls the Get_Access_Token function with 'app' as the argument.
Source code in AnilistMangaUpdater/Main/GUI.py
stop_thread
¶
Set the stop flag to True to stop the thread.
This method can be called to stop the thread. It sets the stop flag to True, which indicates that the thread should stop running.
Source code in AnilistMangaUpdater/Main/GUI.py
App
¶
Bases: CTk
The main application class for the Anilist Manga Updater GUI.
This class initializes the main window, frames, and handles various events and actions such as browsing files, starting the program, managing alternative titles, and updating the terminal and status.
This method sets up the main window, initializes frames, configures the grid layout, and sets up the protocol for the window close button.
Source code in AnilistMangaUpdater/Main/GUI.py
access_token_button_clicked
¶
Handles the event when the access token button is clicked.
This method is triggered when the user clicks on the access token button. Performs these steps:
1. Retrieves current application configuration
2. Pauses execution for 2 seconds
3. Creates new thread for Anilist API access token retrieval
4. Starts the new thread
5. Opens input dialog for user to enter access token
6. Waits for access token thread completion
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
browse_file
¶
Opens a file dialog for the user to select a file and updates the corresponding textbox.
PARAMETER | DESCRIPTION |
---|---|
textbox
|
The textbox to update with the selected file path.
TYPE:
|
is_previous
|
Flag to indicate if this is for the previous file path.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
get_action
¶
Get the action from the user.
Source code in AnilistMangaUpdater/Main/GUI.py
get_original_title
¶
Prompts the user to select an original title from the alternative titles dictionary.
This method displays a list of original titles to the user and prompts them to select one. The user's selection is returned. If the user cancels the dialog or enters an invalid selection, the method returns None.
PARAMETER | DESCRIPTION |
---|---|
alt_titles_dict
|
The dictionary containing the original titles as keys and alternative titles as values.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The original title selected by the user, if a valid selection was made.
TYPE:
|
None
|
If the user cancelled the dialog or made an invalid selection.
TYPE:
|
Source code in AnilistMangaUpdater/Main/GUI.py
manage_alternative_titles
¶
Manages alternative titles in the application.
This method allows the user to add, edit, or delete alternative titles. The user interacts with the method through a series of dialog boxes and terminal prompts. The method retrieves the current alternative titles from a file, prompts the user to select an action (add, edit, or delete), and performs the selected action.
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
on_close
¶
Handles the window close event.
Ensures that all threads are properly stopped before closing the application.
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
open_settings_popup
¶
Opens the settings popup window where users can configure API values, access token, months, and privacy settings.
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
open_token_dialog_event
¶
Opens an input dialog for the user to enter the access token.
This method prompts the user to input the access token through an input dialog. If the user cancels the dialog, an error message is displayed and the terminal is updated with a cancellation message. If the user enters the access token, the method loads the configuration file, adds the access token to it, and saves the updated configuration file. If the thread for obtaining the access token is running, it is stopped.
RETURNS | DESCRIPTION |
---|---|
None
|
None |
RAISES | DESCRIPTION |
---|---|
TypeError
|
If the user cancels the input dialog. |
Source code in AnilistMangaUpdater/Main/GUI.py
start_button_clicked
¶
Handles the event when the start button is clicked.
This method is triggered when the user clicks the start button. It performs the following steps:
1. Checks if program thread is already running (returns if true)
2. Imports AnilistMangaUpdater class if thread not running
3. Creates new program thread
4. Starts the new thread
5. Sets start time to current time
6. Updates time taken label
7. Updates progress bar
8. Resets progress to 0
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_estimated_time_remaining
¶
update_estimated_time_remaining(new_estimated_time_remaining: Optional[float] = None, add_time: Optional[float] = None) -> None
Updates the estimated time remaining label in the GUI.
This method converts the estimated time remaining from seconds to a time format (hours, minutes, and seconds), updates the time remaining label, and schedules itself to be called again after 1 second if there is still time remaining.
If the estimated time remaining is less than 0, it is set to 0. If there is still time remaining, and the function is already scheduled, the scheduled function is cancelled. Then, this function is scheduled to be called again after 1 second.
PARAMETER | DESCRIPTION |
---|---|
new_estimated_time_remaining
|
The new estimated time remaining in seconds. Defaults to None.
TYPE:
|
add_time
|
The time to add to the estimated time remaining in seconds. Defaults to None.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_progress_and_status
¶
Updates the progress and status of the program.
This method updates the global variables progress
and progress_status
that
are used to track the program's state. If the program_progress
parameter is
provided and differs from current progress
, updates GUI labels.
PARAMETER | DESCRIPTION |
---|---|
status
|
The new status of the program.
TYPE:
|
program_progress
|
The new progress value. Uses current global progress if not provided.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_terminal
¶
Updates the terminal in the GUI with the provided text.
This method calls the update_terminal method of the TerminalFrame.
PARAMETER | DESCRIPTION |
---|---|
text
|
The text to be inserted into the terminal.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_time_taken
¶
Updates the time taken in the status frame.
PARAMETER | DESCRIPTION |
---|---|
time_taken
|
The time taken to display.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
BrowseFrame
¶
BrowseFrame(parent: App, *args, **kwargs)
Bases: CTkFrame
A class representing the Browse Frame with file path entry fields and buttons.
This frame is part of the GUI and allows users to browse and select file paths for both previous and current Kenmei export files. Contains entry fields and browse buttons for both file paths. Initializes these fields in a disabled state.
PARAMETER | DESCRIPTION |
---|---|
parent
|
The parent application instance.
TYPE:
|
*args
|
Variable length argument list.
DEFAULT:
|
**kwargs
|
Arbitrary keyword arguments.
DEFAULT:
|
Source code in AnilistMangaUpdater/Main/GUI.py
browse_button
instance-attribute
¶
browse_button = CTkButton(master=self, fg_color='transparent', border_width=2, text_color=('gray10', '#DCE4EE'), text='Browse', command=lambda: browse_file(file_path_textbox, False))
file_path_textbox
instance-attribute
¶
previous_browse_button
instance-attribute
¶
previous_browse_button = CTkButton(master=self, fg_color='transparent', border_width=2, text_color=('gray10', '#DCE4EE'), text='Browse', command=lambda: browse_file(previous_file_path_textbox, True))
previous_file_path_textbox
instance-attribute
¶
SettingsPopup
¶
SettingsPopup(parent: App)
Bases: CTkToplevel
A popup window for configuring application settings.
This class creates a popup window that allows the user to configure various settings such as API Client ID, Secret ID, Number of Months, and Private Value. It provides functionality to load existing settings and save new settings to a configuration file.
PARAMETER | DESCRIPTION |
---|---|
parent
|
The parent application instance.
TYPE:
|
Source code in AnilistMangaUpdater/Main/GUI.py
load_existing_settings
¶
Loads existing settings from config file into entry fields.
Source code in AnilistMangaUpdater/Main/GUI.py
save_settings
¶
Validates and saves settings to configuration file.
Source code in AnilistMangaUpdater/Main/GUI.py
SidebarFrame
¶
SidebarFrame(parent: App, *args, **kwargs)
Bases: CTkFrame
A class representing the Sidebar Frame with various action buttons/options.
This class creates a sidebar frame in the GUI containing buttons for: - Starting the program - Getting the access token - Opening settings - Managing alternative titles - Changing appearance mode - Adjusting UI scaling - Exiting the application
Also includes tooltips for all interactive elements and option menus.
PARAMETER | DESCRIPTION |
---|---|
parent
|
The parent application instance.
TYPE:
|
*args
|
Variable length argument list.
DEFAULT:
|
**kwargs
|
Arbitrary keyword arguments.
DEFAULT:
|
Source code in AnilistMangaUpdater/Main/GUI.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
|
access_token_button
instance-attribute
¶
alt_titles_button
instance-attribute
¶
appearance_mode_label
instance-attribute
¶
appearance_mode_optionemenu
instance-attribute
¶
appearance_mode_optionemenu = CTkOptionMenu(self, values=['Light', 'Dark', 'System'], command=change_appearance_mode_event)
scaling_optionemenu
instance-attribute
¶
scaling_optionemenu = CTkOptionMenu(self, values=['80%', '90%', '100%', '110%', '120%'], command=change_scaling_event)
settings_button
instance-attribute
¶
start_button
instance-attribute
¶
title_label
instance-attribute
¶
StatusFrame
¶
StatusFrame(parent: App, *args, **kwargs)
Bases: CTkFrame
A class representing the Status Frame in the GUI.
This frame includes labels for estimated time remaining, time taken, a progress bar, a percent label, and a status label. It also includes tooltips for the progress bar and status label.
PARAMETER | DESCRIPTION |
---|---|
parent
|
The parent application instance.
TYPE:
|
*args
|
Variable length argument list.
DEFAULT:
|
**kwargs
|
Arbitrary keyword arguments.
DEFAULT:
|
Source code in AnilistMangaUpdater/Main/GUI.py
estimated_time_label
instance-attribute
¶
progress_bar_tooltip
instance-attribute
¶
progress_bar_tooltip = CTkToolTip(progress_bar, f'{round(progress * 100, 1)}%')
status_label
instance-attribute
¶
status_label = CTkLabel(self, text=f'Status: {progress_status[:37]}...' if len(progress_status) > 40 else progress_status, anchor='center')
time_taken_label
instance-attribute
¶
update_estimated_time_remaining
¶
Updates the estimated time remaining label.
PARAMETER | DESCRIPTION |
---|---|
time_remaining
|
The estimated time remaining to display.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_progress
¶
Updates the progress bar and percent label.
PARAMETER | DESCRIPTION |
---|---|
progress_value
|
The new progress value between 0 and 1.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_status
¶
Updates the status label.
PARAMETER | DESCRIPTION |
---|---|
status
|
The new status to display.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
update_time_taken
¶
Updates the time taken label.
PARAMETER | DESCRIPTION |
---|---|
time_taken
|
The time taken to display.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
TerminalFrame
¶
TerminalFrame(parent: App, *args, **kwargs)
Bases: CTkFrame
A frame that contains a terminal-like textbox for displaying logs and messages.
This frame is part of the GUI and is used to display logs and messages in a terminal-like textbox. It supports automatic scrolling to the bottom when new text is added.
PARAMETER | DESCRIPTION |
---|---|
parent
|
The parent application instance.
TYPE:
|
*args
|
Variable length argument list.
DEFAULT:
|
**kwargs
|
Arbitrary keyword arguments.
DEFAULT:
|
Source code in AnilistMangaUpdater/Main/GUI.py
update_terminal
¶
Updates the terminal in the GUI with the provided text.
This method first checks if the scrollbar is at the bottom of the terminal. If it is, the method will automatically scroll to the end after inserting the text. The terminal is temporarily enabled for the insertion of the text and then disabled again to prevent manual edits.
PARAMETER | DESCRIPTION |
---|---|
text
|
The text to be inserted into the terminal.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
add_alternative_title
¶
Adds an alternative title to the alternative titles dictionary.
This function prompts the user to input an original title and its corresponding alternative title. If the user provides valid inputs, it updates the alternative titles dictionary with the new pair and saves it to a file.
PARAMETER | DESCRIPTION |
---|---|
alt_titles_dict
|
The dictionary containing the original titles as keys and alternative titles as values.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
change_appearance_mode_event
¶
Changes the appearance mode of the application.
This function changes the appearance mode of the application based on the input parameter. It logs the new appearance mode and the successful change of the appearance mode.
PARAMETER | DESCRIPTION |
---|---|
new_appearance_mode
|
The new appearance mode to be set. This should be a string representing the desired appearance mode.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
change_scaling_event
¶
Changes the UI scaling of the application.
This function changes the UI scaling based on the user's selection. It adjusts the scaling factor and updates the GUI accordingly.
PARAMETER | DESCRIPTION |
---|---|
new_scaling
|
The new scaling factor selected by the user.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
delete_alternative_title
¶
Deletes an alternative title from the alternative titles dictionary.
This function removes the alternative title associated with the given original title from the alternative titles dictionary and saves the updated dictionary to a file.
PARAMETER | DESCRIPTION |
---|---|
alt_titles_dict
|
The dictionary containing the original titles as keys and alternative titles as values.
TYPE:
|
original_title
|
The original title for which the alternative title is to be deleted.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Main/GUI.py
edit_alternative_title
¶
Edits an alternative title in the alternative titles dictionary.
Prompts user to input a new alternative title for given original title. Updates dictionary and saves to file if valid input is provided.
PARAMETER | DESCRIPTION |
---|---|
alt_titles_dict
|
Dictionary mapping original titles (keys) to their alternative titles (values).
TYPE:
|
original_title
|
Original title to edit alternative for.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |