-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from Integration-Automation/dev
Dev
- Loading branch information
Showing
78 changed files
with
145 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
automation_editor/automation_editor_ui/extend_multi_language/update_language_dict.py
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
automation_editor/automation_editor_ui/menu/build_menubar.py
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor | ||
from automation_ide.automation_editor_ui.editor_main.main_ui import EDITOR_EXTEND_TAB | ||
from automation_ide.automation_editor_ui.editor_main.main_ui import start_editor | ||
|
||
__all__ = [ | ||
"start_editor", "AutomationEditor", "EDITOR_EXTEND_TAB" | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
automation_ide/automation_editor_ui/extend_multi_language/update_language_dict.py
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,8 @@ | ||
from automation_ide.automation_editor_ui.extend_multi_language.extend_english import update_english_word_dict | ||
from automation_ide.automation_editor_ui.extend_multi_language.extend_traditional_chinese import \ | ||
update_traditional_chinese_word_dict | ||
|
||
|
||
def update_language_dict(): | ||
update_traditional_chinese_word_dict() | ||
update_english_word_dict() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
from automation_ide.automation_editor_ui.menu.automation_menu.api_testka_menu.build_api_testka_menu import \ | ||
set_apitestka_menu | ||
from automation_ide.automation_editor_ui.menu.automation_menu.auto_control_menu.build_autocontrol_menu import \ | ||
set_autocontrol_menu | ||
from automation_ide.automation_editor_ui.menu.automation_menu.automation_file_menu.build_automation_file_menu import \ | ||
set_automation_file_menu | ||
from automation_ide.automation_editor_ui.menu.automation_menu.load_density_menu.build_load_density_menu import \ | ||
set_load_density_menu | ||
from automation_ide.automation_editor_ui.menu.automation_menu.mail_thunder_menu.build_mail_thunder_menu import \ | ||
set_mail_thunder_menu | ||
from automation_ide.automation_editor_ui.menu.automation_menu.web_runner_menu.build_webrunner_menu import \ | ||
set_web_runner_menu | ||
from automation_ide.automation_editor_ui.menu.install_menu.automation_menu.build_automation_install_menu import \ | ||
build_automation_install_menu | ||
from automation_ide.automation_editor_ui.menu.install_menu.tools_menu.build_tool_install_menu import \ | ||
build_tool_install_menu | ||
from automation_ide.automation_editor_ui.menu.tools_menu.bing_gpt_menu.build_bing_gpt_menu import set_bing_gpt_menu | ||
|
||
if TYPE_CHECKING: | ||
from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor | ||
|
||
from je_editor import language_wrapper | ||
|
||
|
||
def add_menu_to_menubar(ui_we_want_to_set: AutomationEditor): | ||
ui_we_want_to_set.automation_menu = ui_we_want_to_set.menu.addMenu( | ||
language_wrapper.language_word_dict.get("automation_menu_label")) | ||
ui_we_want_to_set.install_menu = ui_we_want_to_set.menu.addMenu( | ||
language_wrapper.language_word_dict.get("install_menu_label")) | ||
set_apitestka_menu(ui_we_want_to_set) | ||
set_autocontrol_menu(ui_we_want_to_set) | ||
set_automation_file_menu(ui_we_want_to_set) | ||
set_load_density_menu(ui_we_want_to_set) | ||
set_mail_thunder_menu(ui_we_want_to_set) | ||
set_web_runner_menu(ui_we_want_to_set) | ||
build_automation_install_menu(ui_we_want_to_set) | ||
build_tool_install_menu(ui_we_want_to_set) | ||
set_bing_gpt_menu(ui_we_want_to_set) |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
Oops, something went wrong.