Skip to content

Commit

Permalink
IMPROVEMENT: rename frontend_tkinter files to better describe what th…
Browse files Browse the repository at this point in the history
…ey do
  • Loading branch information
amilcarlucas committed Apr 22, 2024
1 parent a27373a commit c581bbf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ It consists of four main components:
2. the local filesystem backend, does file I/O on the local file system. Operates mostly on parameter files and metadata/documentation files
3. the flight controller backend, does communication with the flight controller
4. the tkinter frontend, this is the GUI the user interacts with
1. `frontend_tkinter_base.py`
2. `frontend_tkinter_connection_selection.py`
3. `frontend_tkinter_directory_selection.py`
4. `frontend_tkinter_component_editor.py`
5. `frontend_tkinter_parameter_editor.py`

![Software Architecture diagram](images/Architecture.drawio.png)

Expand Down
4 changes: 2 additions & 2 deletions MethodicConfigurator/ardupilot_methodic_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

from frontend_tkinter_directory_selection import VehicleDirectorySelectionWindow

from component_editor import JsonEditorApp
from frontend_tkinter_component_editor import JsonEditorApp

from frontend_tkinter import ParameterEditorWindow
from frontend_tkinter_parameter_editor import ParameterEditorWindow

from version import VERSION

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions unittests/frontend_tkinter_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import unittest
from unittest.mock import patch, MagicMock
import tkinter as tk
from frontend_tkinter import show_error_message
from frontend_tkinter import show_tooltip
from frontend_tkinter_parameter_editor import show_error_message
from frontend_tkinter_parameter_editor import show_tooltip


class TestShowErrorMessage(unittest.TestCase):
Expand Down

0 comments on commit c581bbf

Please sign in to comment.