localization_editor.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**************************************************************************/
  2. /* localization_editor.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef LOCALIZATION_EDITOR_H
  31. #define LOCALIZATION_EDITOR_H
  32. #include "editor/editor_locale_dialog.h"
  33. #include "scene/gui/check_box.h"
  34. #include "scene/gui/tree.h"
  35. class EditorFileDialog;
  36. class FileSystemDock;
  37. class LocalizationEditor : public VBoxContainer {
  38. GDCLASS(LocalizationEditor, VBoxContainer);
  39. Tree *translation_list = nullptr;
  40. EditorLocaleDialog *locale_select = nullptr;
  41. EditorFileDialog *translation_file_open = nullptr;
  42. Button *translation_res_option_add_button = nullptr;
  43. EditorFileDialog *translation_res_file_open_dialog = nullptr;
  44. EditorFileDialog *translation_res_option_file_open_dialog = nullptr;
  45. Tree *translation_remap = nullptr;
  46. Tree *translation_remap_options = nullptr;
  47. Tree *translation_pot_list = nullptr;
  48. CheckBox *translation_pot_add_builtin = nullptr;
  49. EditorFileDialog *pot_file_open_dialog = nullptr;
  50. EditorFileDialog *pot_generate_dialog = nullptr;
  51. Button *pot_generate_button = nullptr;
  52. bool updating_translations = false;
  53. String localization_changed;
  54. void _translation_file_open();
  55. void _translation_add(const PackedStringArray &p_paths);
  56. void _translation_delete(Object *p_item, int p_column, int p_button, MouseButton p_mouse_button);
  57. void _translation_res_file_open();
  58. void _translation_res_add(const PackedStringArray &p_paths);
  59. void _translation_res_delete(Object *p_item, int p_column, int p_button, MouseButton p_mouse_button);
  60. void _translation_res_select();
  61. void _translation_res_option_file_open();
  62. void _translation_res_option_add(const PackedStringArray &p_paths);
  63. void _translation_res_option_changed();
  64. void _translation_res_option_delete(Object *p_item, int p_column, int p_button, MouseButton p_mouse_button);
  65. void _translation_res_option_popup(bool p_arrow_clicked);
  66. void _translation_res_option_selected(const String &p_locale);
  67. void _pot_add(const PackedStringArray &p_paths);
  68. void _pot_delete(Object *p_item, int p_column, int p_button, MouseButton p_mouse_button);
  69. void _pot_file_open();
  70. void _pot_generate_open();
  71. void _pot_add_builtin_toggled();
  72. void _pot_generate(const String &p_file);
  73. void _update_pot_file_extensions();
  74. void _filesystem_files_moved(const String &p_old_file, const String &p_new_file);
  75. void _filesystem_file_removed(const String &p_file);
  76. protected:
  77. void _notification(int p_what);
  78. static void _bind_methods();
  79. public:
  80. void add_translation(const String &p_translation);
  81. void update_translations();
  82. void connect_filesystem_dock_signals(FileSystemDock *p_fs_dock);
  83. LocalizationEditor();
  84. };
  85. #endif // LOCALIZATION_EDITOR_H